Page 10 of 20

Re: What code editor do you use ?

Posted: Fri Dec 09, 2016 2:45 pm
by RaycatRakittra
Spacemacs. Might be moving to vanilla Emacs to see how it works on the inside.

Re: What code editor do you use ?

Posted: Sun Dec 11, 2016 5:30 am
by davisdude
I use Vim with the Gruvbox colorscheme, Proggy Square Slashed Zero font, with my own Vim-love-docs highlighting.

Image

You can see it bigger here

Re: What code editor do you use ?

Posted: Sun Dec 11, 2016 10:48 am
by Murii
davisdude wrote:I use Vim with the Gruvbox colorscheme, Proggy Square Slashed Zero font, with my own Vim-love-docs highlighting.

Image

You can see it bigger here
I like what you did there :)

Here's mine:

Image

It can be found here:
https://github.com/Murii/Vim_for_c-cpp

Re: What code editor do you use ?

Posted: Thu Dec 15, 2016 5:39 am
by theresaspyaroundhere
Zerobrane Studio

Re: What code editor do you use ?

Posted: Sun Dec 18, 2016 10:27 pm
by reno57
"Sublime text", clearly the best free text editor i've ever seen.

Re: What code editor do you use ?

Posted: Tue Dec 20, 2016 2:11 am
by CanadianGamer
My favorite text editor is Atom. It's open source, it is extremely customizable and can do pretty much everything that Sublime can.

Re: What code editor do you use ?

Posted: Sun Jan 08, 2017 7:28 am
by D0NM
Dear sirs, could you list the essential Lua plug-ins for Visual Studio Code? Thank you!!

Re: What code editor do you use ?

Posted: Sun Jan 08, 2017 11:06 am
by CalmoSoft
Hello All,

I use Zerobrane Studio.

Greetings,
Gal Zsolt
(~ CalmoSoft ~)

Re: What code editor do you use ?

Posted: Sun Jan 08, 2017 12:36 pm
by skyHights
Zerobrane, I've tried a lot, but it has to be the best.

Re: What code editor do you use ?

Posted: Mon Feb 20, 2017 5:21 am
by phobos2077
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 :)