I'm using TextMate on Mac OS X, which I am very happy with, but I would also like a nice editor on my Ubuntu box. So I have been looking for something like TextMate, which is very simplistic in its interface but very powerful beneath that surface, with a plugin system and all.

Is there any similar editor for Linux?

link|improve this question
feedback

13 Answers

up vote 17 down vote accepted

Scribes tries to be a TextMate replacement for Linux.

link|improve this answer
1  
Scribes seems very nice, I've instaledit and will give it a shot, thanks! – Markus Amalthea Magnuson Sep 18 '08 at 15:34
8  
Scribes is missing a key feature that TextMate has -- you can open an entire directory tree and switch between files using tabs. With Scribes, you end up with a ton of windows open on the screen and you can't easily open other files in the same directory like you can with TextMate. – Dennis Munsie Jan 21 '10 at 14:39
1  
scribes is nasty, wth :( – Matt Joiner Aug 20 '10 at 4:29
6  
Scribes is complete trash. It's written by a guy who thinks he's the second coming for usability and incorporates all his bad ideas into Scribes. First thing I noticed: the menu bar autohides, and slides in from the right EVERY TIME YOU MOVE THE MOUSE. It's utterly ridiculous. A stupid window manager instead of tabs is icing on the cake. It's guys like this and applications like Scribes why no one takes desktop Linux seriously. – Matt Olenik Feb 28 '11 at 18:04
feedback

Redcar - http://redcareditor.com/

link|improve this answer
Redcar seems to be the closest imitator of text-mate for all platforms. It even claims that the text-mate bundles will work in the Redcar Editor. – John Jul 4 '10 at 16:51
3  
@dguaraglia, what's the issue with JRuby? It's Ruby running in the JVM, it's faster than MRI or YARV and allows easy access to Java classes. – Mircea Chirea May 10 '11 at 19:57
feedback

GEdit can be customized pretty good. Not as good as Textmate but it's very usable.

How to make the best of ubuntu text editor gedit

Pimp my gedit

Update: There is even a github repo with tons of extensions for GEdit: GMate

link|improve this answer
feedback

Emacs, with its infinite extendability (via. Emacs Lisp) is most like TextMate in its ability to be modified for any purpose. A big plus is that the modification can be done on the fly, by writing new functions and loading them into Emacs while it is running. It has "modes" (packages of syntax highlighting, indentation, shortcuts and snippets) for most languages and many of the big frameworks (i.e. there is a mode specifically for Rails). Emacs is cross platform - it runs on Windows, OS X and, of course, Linux (along with many other more obscure operating systems).

That all said, Emacs has a steep learning curve. The key bindings and general way of doing things takes a while to get used to. However, this is the case with any powerful piece of software, including TextMate and some of the other editors that have been mentioned (vi, I'm looking at you). And the work is worth the effort; Emacs has features that will make everything you do faster. Take the time, print out a "cheat sheet," read about useful tweaks to the defaults and give Emacs a try.

link|improve this answer
2  
Emacs(or That Other Editor, vi) are the best unix editors. – Paul Nathan Dec 17 '09 at 17:34
13  
The original question was for a text editor similar to TextMate on the Mac. Emacs, no matter how good (or bad) it is, is not similar to TextMate on the Mac. – Dennis Munsie Jan 21 '10 at 14:36
If you want to make Emacs more TextMate like: emacswiki.org/emacs/TextMate – boskom Sep 23 '10 at 12:15
feedback

I use kate which is part of KDE

link|improve this answer
feedback

I've been rather fond of jEdit (http://www.jedit.org) for anything that I wouldn't otherwise use Eclipse for. It's pretty lightweight, has a good plug-in collection and a nicely-integrated management system for installing and updating the plugins. It's written in Java so it should run anywhere you can get a JRE going (I have it running on Ubuntu, Mac OS X and WinXP). I've found it a decent editor for Java, Javascript, HTML/XML/other-ML, CSS, and plenty others.

To be fair, I continue to prefer XEmacs for Perl development (I think it had the best parser of Perl syntax outside of Perl itself), and I use Eclipse for larger-scale projects in Java. But jEdit gets a lot of keyboard-time.

link|improve this answer
feedback

Anybody here still looking for TextMate Alternative ... Here is one... http://www.sublimetext.com/ Also works on Windows / mac.

link|improve this answer
3  
+1 Sublime Text 2 is absolutely incredible under Linux. – Adam Gent Dec 17 '11 at 15:51
feedback

Geany comes by default in ubuntu, light weight yet feature rich.

link|improve this answer
feedback

Add an alias to your .bash_aliases file to call your favorite graphical editor

# Frustration Aliases
alias vi='gvim'

In my case I like p-dinking around in the shell but it is nice to use the gui functions too... ;-) I type the default "vi" command and "gvim" the graphical version of Vim is started.

link|improve this answer
feedback

You can learn Vi, which is a bit frustrating at first but makes you more productive in the long run.

Using the project plugin makes Vim a little bit more like TextMate, with an IDE-like explorer.

link|improve this answer
feedback

This thread contains a good deal of helpful information and links on VIM. I personally use VIM for all my editing, and find that it makes me more productive than any other IDE or editor that I am familiar with. But it has a bit of a learning curve.

link|improve this answer
feedback

Google'ing for "linux textmate" returns quite a few results. Must be a popular wish.

I second Gedit. I've used it quite a bit when write Java code for school and also some Python and Bash scripts.

If you look around, there are many tutorials about "tricking" out Gedit:

Gedit html editor

Gedit plugins

List of Gedit plugins

link|improve this answer
feedback

How about VimMate? Looks promising.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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