Re: Linux Text Editor(s)!
I can't say I have a lot of linux ppl around me but those I know all have emacs as their favourite.
Re: Linux Text Editor(s)!
If S_M_A knew more Linux people, perhaps some vi users would have that as their favourite (Vim seems rather popular among the vi variants). And then there are a whole host of other somewhat less popular text editors, plus IDEs like Anjuta, Code::Blocks, KDevelop, etc.
Re: Linux Text Editor(s)!
I never did get used to EMACS. I use gvim, the graphical version of VIM.
Viggy
Re: Linux Text Editor(s)!
If you're new to Linux, or don't feel like spending hours learning how to use the text editor, don't go with vi/vim or emacs. These editors are very powerful, but take a long time to learn.
If you want to use a console based one, go with nano or pico.
For a GUI app, I use kate.
If you're just starting out in C, I'd recommend using an IDE so that you don't have to worry about makefiles or using the command line compiler. Code::Blocks is a good one, KDevelop is pretty good but can be a pain sometimes. Netbeans is another good one.
Re: Linux Text Editor(s)!
On linux, I tend to use emacs or KDevelop depending on the projet, but Code::Blocks is pretty nice too.
Re: Linux Text Editor(s)!
When working in projects or with a large amount of files, I always go Code::Blocks, it hasn't failed me once and is very comfortable to use. Kate, gedit and all those "desktop branded" editors are good, but as they come with the weight of their desktop environment, I've left them aside for something nicer and cleaner such as NEdit, which comes with an interesting system for syntax highlightning and marco programming.
Re: Linux Text Editor(s)!
I use SlickEdit since it's cross platform and looks and behaves almost the same way on Windows and Linux (a big plus in my book).
Re: Linux Text Editor(s)!
Vim!
Way back when I was in college we had no choice but to learn vi. When I entered the workforce I've found it paid dividends to learn those ropes early on.
To this day I prefer to use vi/vim even in a Windows environment. It becomes second nature just like typing with a qwerty keyboard layout.
The reason why I think vim is your best choice for any UNIX development is you are guaranteed that some version of vi will be on any UNIX box.
-gw
Re: Linux Text Editor(s)!
Re: Linux Text Editor(s)!
Windows console with telnet sessions &putty consoles with vi/vim/<sometimes textpad with files on a windows network drive... sorry.. but I do feel very lazy sometimes.. :D >
Re: Linux Text Editor(s)!
Emacs was what I learned, but if you can get past the steep learning curve of vi, I've seen some people do rather amazing things with it.
Re: Linux Text Editor(s)!
When I do something in Linux, I also most of the time use Emacs.
Re: Linux Text Editor(s)!
Some developers in my group use the Eclipse IDE for large-scale, cross-platform development. It is powerful for C, C++, python, etc and remains the same across the operating system boundaries. I personally have only used it for a few minor projects. But the guys really like it.
Sincerely, Chris.
Re: Linux Text Editor(s)!
I was under the impression Eclipse was mainly for Java development, and that support for other languages was pretty much an afterthought.