I'm still searching for a "perfect" editor and it seems nothing works as a full IDE. I have come from professional coding background (PHP, C#, JS) so maybe my requirements are too high
Here's what I want:
1. Syntax highlighting. Obviously.
2. An actual code completion, not only for basic Lua functions and LOVE API but also for all my own functions and classes/tables I create. I want it to read LuaDoc and trace types for at least some of the variables that I use. So I can use code completion when working with some library, for example...
3. Running and debugging a game from the editor, with breakpoints, watches, etc.
Here's what I tried:
1. Notepad++ (my default editor for text files). Running anything is a mess. No debugging, no code analysis...
2. Visual Studio 2015 with BabeLua. Good running and debugging (but a mess to configure). No LOVE API hints. No console output.
3. Jetbrains IDEA with Lua plugin. Real pain to configure. Debugging is useless (I tried the .cmd file workaround and put mobdebug.lua inside my project folder). I can set up breakpoints but don't see any variable values. The best code editing so far, but still doesn't show me function and argument descriptions, etc. Though it should understand LuaDoc, so maybe I'm doing something wrong...
4. Sublime Text 3 with Love plugin. No auto-complete for my own code, no debugging whatsoever...
5. ZeroBrane Studio. The best solution so far, because auto complete and debugging works nice. Still it doesn't understand my code (ignores LuaDocs for functions, variables, etc.) and generally it looks like an IDE from the past. I can't ctrl+click on symbol to quickly move to it's definition, I can't see a list of usages for a symbol, poor code editing in general (no wonder, because professional editors have thousands of hours put into them).
I wanted to also try Atom but it's pointless because as I understand it's the same as Sublime plugin in terms of features.
Any suggestions will be greatly appreciated
