vote up 4 vote down star
4

Let me preface this question by saying I use TextMate on Mac OSX for my text needs and I am in love with it. Anything comparable on the Linux platform? I'll mostly use it for coding python/ruby.

Doing a google search yielded outdated answers.

Edit: Since there has been some concern about the 'merit' of this question. I am about to start a new Ruby Programming Project in Linux and before I got started I wanted to make sure I had the right tools to do the job.

Edit #2: I use VIM on a daily basis -- all . the . time. I enjoy using it. I was just looking for some alternatives.

flag

33 Answers

1 2 next
vote up 19 vote down check

Emacs is a wonderful text editor. It has huge power once you become a power user. You can access a shell, have as many files open as you want in as many sub-windows and an extremely powerful scripting support that lets you add all kinds of neat features.

I have been using a ruby-mode which adds syntax highlighting and whatnot to ruby, and the same exists for every major language.

If you keep at it, you can use exclusively the keyboard and never touch the mouse, which increases your editing speed by a significant margin.

If you want to start with something a lot more basic though, gedit is nice... it has built in syntax highlighting as well for most languages based on the filename extension. It comes with the OS as well (though emacs you can easily install with apt-get or some similar package finder utility).

UPDATE: I think gedit is exclusively GUI based though, so it would be useful to learn emacs in case you are stuck with just a shell (it is fully featured in both shell and graphical mode).

FURTHER UPDATE: Just FYI, I am not trying to push Emacs over Vim, it's just what I use, and it's a great editor (as I'm sure Vim is too). It is daunting at first (as I'm sure Vim is too), but the question was about text editors on Linux besides vi... Emacs seems the logical choice to me, but gedit is a great simple text editor with some nice features if that's all you are looking for.

link|flag
vote up 17 vote down

Real programmers set the universal constants at the start such that the universe evolves to contain the disk with the data they want.

http://xkcd.com/378/

link|flag
vote up 12 vote down

Kate, the KDE Advanced Text Editor is quite good. It has syntax highlighting, block selection mode, terminal/console, sessions, window splitting both horizontal and vertical etc.

link|flag
vote up 5 vote down

Try Scribes . It tries to be a TextMate replacement for Linux

link|flag
show 2 more comments
vote up 4 vote down

I use pico or nano as my "casual" text editor in Linux/Solaris/etc. It's easy to come to grips with, and whilst you lose a couple of rows of text to the menu, at least it's easy to see how to exit, etc.

You can even extend nano, I think, and add syntax highlighting.

link|flag
vote up 4 vote down

I like the versatility of jEdit (http://www.jedit.org), its got a lot of plugins, crossplatform and has also stuff like block selection which I use all the time.

The downside is, because it is written in java, it is not the fastest one.

link|flag
show 2 more comments
vote up 3 vote down

I use SciTE very small and simple text editor.

link|flag
vote up 3 vote down

On Mac OS X, I have used BBEdit since the early 1990's, so I use that as my reference for all other editors. I sometimes use BBEdit to edit files on a Linux box using ftp mode, and that works very well if you have a fast network connection to the Linux box.

I learned emacs two years ago because the rest of the programming team I joined uses it. I find emacs powerful but annoyingly old-fashioned in many ways, but once you have learned emacs, you can use it on any platform (Linux, OS X, Windows). This is the editor I use almost exclusively at work now. It is going to take me years to master all its features, though.

I have also used gedit on Linux and found it very usable, but I haven't tried to use it as my primary editor for any project.

I have a colleague at work who uses Komodo Edit 4.4 (free from activestate.com), running it on a Windows computer but using it in ftp mode so she can edit files on our Linux server. Komodo Edit has many nice features, but it takes a looonnnggg time to launch the first time.

link|flag
vote up 1 vote down

SciTE http://www.scintilla.org/SciTE.html

link|flag
vote up 1 vote down

I'm not rousing debate about Emacs Vs. Vi. I'm saying I know I can use Vi as a text editor, what are my other choices?

Update: I haven't gotten the same responses. I got pointed to SciTe which I didn't know about along with gedit.

Hmm.. I think I know why you took this question personally.

link|flag
vote up 1 vote down

The best I've found is gedit unfortunately. Spend a few hours with it and you'll discover it's not so bad, with plugins and themes. You can use the command line to open documents in it.

link|flag
vote up 1 vote down

When I searched for TextMate alternative for Linux, I ended up using Geany. It's not as powerfull, but still nice to work with. Great replacement for Kate.

link|flag
vote up 1 vote down

I've just started using OSX. Free editors of note that I've discovered:

  • Komodo by ActiveState. No debugger or regex editor (although one comes with Python, i.e. redemo.py) in free version but perfectly usable.
  • ERIC, written in PyQT.
  • Eclipse with PyDev is my preferred option for editing Python on all platforms. Nice clean GUI, decent debugger. Good syntax parsing etc.
link|flag
vote up 1 vote down

Alternative text editors? Try Diakonos, "a Linux editor for the masses". The default keyboard mapping is as expected for cut, copy, paste, undo, open, save, etc.

link|flag
vote up 1 vote down

Friend of mine swears by jed, http://www.jedsoft.org/jed/

link|flag
vote up 1 vote down

Don't forget NEdit! Small and light, but with syntax highlighting and macro record/replay.

link|flag
show 1 more comment
vote up 0 vote down

It's the same question; you get the same responses. This site isn't to help you figure out what to eat for lunch, it's to help you out with programming problems.

link|flag
vote up 0 vote down

+1 for pico/nano -- lightweight, gets the job done, good help

link|flag
vote up 0 vote down

You can try Emacs with ruby-mode, Rinari (for Rails) and yasnippet which provides automatic snippets like Textmate.

link|flag
vote up 0 vote down

I love TextMate on OSX.

There is a kind of TextMate clone for Windows called simply "E" (e-texteditor.com). Its author promised that there will be a Linux version soon. Even if you already picked your favourite, TextMate (or E) is worth a look, simply because it is different.

I would say that there are mainly four different families of text editors:

  • classic menubar-based editors like WinEdit, Gedit or BBEdit
  • Emacs and its brethren XEmacs, Aquamacs etc.
  • VI / Vim / Cream and the like
  • TextMate and E

You can differenciate between these families by their different paradigms of usage:

  • Classic editors rely mainly on a menubar and some Ctrl-key shortcuts.
  • Emacs-style editing uses highly sophisticated keyboard commands like C-x-s and even whole words to evoke commands.
  • VI is modebased and is operated by single-key commands or whole words.
  • TextMate is based on Snippets and classic shortcuts.

Emacs and TextMate are also easily extensible by user-created scripts in Lisp (Emacs) or any other command-line-language (TextMate). (Classic editors and VI are also extendable, but the effort is usually considerably bigger)

I would recommend that everyone tried at least one good example of each of these families (if possible) and find out what suits them best.

link|flag
show 1 more comment
vote up 0 vote down

I agree with Mike, though I'm a Vim die-hard. I've been using GEdit quite frequently lately when I'm doing lightweight Ruby scripting. The standard editor (plus Ruby code snippets) is extremely usable and polished, and can provide a nice reprieve from full-strength, always-on programming editors.

link|flag
vote up 0 vote down

I love Vim but I'm finding myself using Gedit more often now, especially when I've more than one file open. Gedit has tabs that make it easy to switch between files. Or maybe Firefox has spoiled me into expecting tabs in everything.

link|flag
vote up 0 vote down

TextMate is a great editor, and there is a way to replicate some of the functionality in GEdit. Check the article out here: http://rubymm.blogspot.com/2007/08/make-gedit-behave-roughly-like-textmate.html to modify GEdit to behave like TextMate.

link|flag
vote up 0 vote down

I find Geany (http://geany.uvena.de/) quite good.

link|flag
vote up 0 vote down

Vim is a nice upgrade for Vi, offering decent features and a more usable set of keybindings and default behaviour. However, graphical versions like GVim, KVim and even Cream are extremely lacking in my opinion. I've been using Geany a lot lately, but it also has its shortcomings.

I just can't find something in the league of Programmers Notepad, Smultron or TextMate on Linux. A shame, since I want to live in an all open source cyberworld, I'm stuck hopping from one almost-right editor to another.

link|flag
vote up 0 vote down

Off topic!

link|flag
vote up 0 vote down

I've used Emacs for 20 years. It's great and it works everywhere. I also have TextMate, which I use for some things on the Mac (HTML mode is great). If you want to do Ruby development, Netbeans supports Ruby and it also runs on all platforms.

http://www.netbeans.org/features/ruby/index.html

I've seen some blogs, etc claiming that it's the best Ruby environment available.

link|flag
vote up 0 vote down

I use joe for simple (and not so simple) editing when I'm away from Eclipse.

It uses the classic Wordstar keybindings- although I've never used Wordstar, it's a selling point for many people.

It's easy, well-supported, light-weight and it has binaries available for everything.

link|flag
vote up 0 vote down

You could give bluefish a try. Has a bunch of nice features for website work. Syntax files for most every language.

http://bluefish.openoffice.nl/

If on widows give Crimson Editor a try http://www.crimsoneditor.com/ It's been a long while since I ran windows, but iirc, 'official' development has stopped on it, but the community has taken up a fork of it and called it emerald or somesuch. Crimson editor is still very capable as is.

Both bluefish and crimson editor have project management abilities. FTP ablilities, macros etc etc

link|flag
vote up 0 vote down

I personally use MacVim which is basically a GVim for Mac OSx. However I have been reading alot about Redcar, which is a text editor for Linux, which shares a lot of the Textmate functionality. Checkout the links below.

Redcar
LURG Lecture on Redcar

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.