Code editors

You can talk about almost anything that you want to on this board.

Moderator: Moderators

Post Reply
User avatar
dXtr
Posts: 375
Joined: Tue Sep 21, 2004 12:11 am
Location: Karlshamn (Sweden)

Code editors

Post by dXtr »

I thought it could be interesting to see what everyone use when writing code and also see if there's better editors out there that I've missed.

Personally I first started out in the old DOS editor edit and then moved on to notepad. But as I use Visual Studio a lot too I've gotten used to syntax hi-lighting and all those other fancy things.
So I moved over to notepad++ and have been using it mainly for ASM and for platforms that isn't supported my MSVC (just about everything except Windows). But then one day when I was going to do some refactoring using regular expressions I noticed that the regexp support in notepad++ was crap, I've also been missing the ability to split windows in notepad++, something I find very useful when editing on multiple places in a file.
So I'm now looking for a better editor to replace notepad++.
I've been looking into emacs and it seems like a good option, except for it's millions of keyboard commands that I need to learn in order to do anything at all in the program. And also that it's recommended to learn lisp if you want to do any more advanced customizations on the editor. I have no problem learning lisp.. it's just that I've never had the time to learn lisp.

So what do you all use? And anyone got any recommendations for a good editor?
Sorry for misspellings, I'm from Sweden ^^
Nessie
Posts: 134
Joined: Mon Sep 20, 2004 11:13 am
Location: Sweden
Contact:

Post by Nessie »

I use Eclipse for everything - Java, perl, python, bash, html/css/javascript, php, etc. It's got everything you need for most platforms - debugger, unit testing, source control, browser, bug tracker client... I'm actually amazed by its feature set every day!

I don't do any C/C++ or .NET coding though, Eclipse probably sucks at that so you'd be better off with VS.
Code::Blocks is a decent free C/C++ IDE if you want to target non-microsoft platforms.

As for a simple text editor, I use notepad++ myself and haven't found any better alternative yet. Of course, UltraEdit is a lot better but it's not free unless you get the crack. ;)
gannon
Posts: 162
Joined: Sun Nov 20, 2005 9:38 pm
Contact:

Post by gannon »

I used to just use a standard text editor, preferably a one with syntax highlighting when available. Currently I've been using eclipse for most stuff, but mainly because I've mostly only been doing Java for school projects (the IDE makes it easier to manage/test)
User avatar
dXtr
Posts: 375
Joined: Tue Sep 21, 2004 12:11 am
Location: Karlshamn (Sweden)

Post by dXtr »

Nessie wrote:As for a simple text editor, I use notepad++ myself and haven't found any better alternative yet. Of course, UltraEdit is a lot better but it's not free unless you get the crack. ;)
Had totally forgot about UltraEdit remember it having some pretty nice features too. Maybe I should get trial and see if it got what I'm looking for. :)
Also been thinking of trying SlickEdit too as I've heard much good about it.
Sorry for misspellings, I'm from Sweden ^^
User avatar
tokumaru
Posts: 12106
Joined: Sat Feb 12, 2005 9:43 pm
Location: Rio de Janeiro - Brazil

Post by tokumaru »

I use Notepad++. It's got pretty decent features and is free.
User avatar
No Carrier
Posts: 290
Joined: Tue Dec 13, 2005 4:19 pm
Location: Gainesville, FL - USA
Contact:

Post by No Carrier »

I use Context with the with 6502 highlighter.
User avatar
Zepper
Formerly Fx3
Posts: 3264
Joined: Fri Nov 12, 2004 4:59 pm
Location: Brazil
Contact:

Post by Zepper »

- Dev-C++ together with Wordpad, since 99% of the text files (inside ZIP files from here) are not opened correctly with Notepad.
Post Reply