Yep TextAdept never really got mush visibility, but it was (is?) a great approach to a having a editor fully scripted in lua, much more so than Scite which also has lua scripting and of course is uses the same scintilla text editor component as TextAdept.
These days Adobes Brackets is using pretty much the same approach in the JS side of things.
This might sound absurd but sometimes back when I was totally new to Lua I wanted a REPL. To my surprise, I couldn't find one. Can someone suggest something so I can use it when I get back to lua again.
Just run `lua` and you'll be dropped into a REPL. It's pretty basic compared to some other REPLs though, and I'd also be interested in hearing if there are some more user-friendly options out there.
My main gripe with the current REPL is it doesn't print anything to the screen without an explicit print call. So myMethod(x) will not print anything, instead you have to assign the result to a variable and print it or wrap everything you do in a call to print.
Like the ppl using Eclipse over PHPStorm, it's just plain counter-productive and borderline ridiculous to endorse ZeroBrane over LuaGlider. Sorry, they have a ways to go.
14 comments
[ 1590 ms ] story [ 1041 ms ] threadThese days Adobes Brackets is using pretty much the same approach in the JS side of things.
My main gripe with the current REPL is it doesn't print anything to the screen without an explicit print call. So myMethod(x) will not print anything, instead you have to assign the result to a variable and print it or wrap everything you do in a call to print.