Which text/code editor on Linux is most similar to TextMate? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T11:55:04Zhttp://stackoverflow.com/feeds/question/70120http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate5Which text/code editor on Linux is most similar to TextMate?Markus Amalthea Magnuson2008-09-16T07:40:03Z2009-04-08T19:31:24Z
<p>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.</p>
<p>Is there any similar editor for Linux?</p>
http://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate/70171#701711Answer by David Dibben for Which text/code editor on Linux is most similar to TextMate?David Dibben2008-09-16T07:49:27Z2008-09-16T07:49:27Z<p>I use <a href="http://kate-editor.org/" rel="nofollow">kate</a> which is part of KDE</p>
http://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate/70177#701770Answer by daddz for Which text/code editor on Linux is most similar to TextMate?daddz2008-09-16T07:49:51Z2008-09-16T07:49:51Z<p>GEdit can be customized pretty good. Not as good as Textmate but it's very usable.</p>
<p><a href="http://ubuntu-tutorials.com/2007/03/07/how-to-make-the-best-of-ubuntu-text-editor-gedit/" rel="nofollow">How to make the best of ubuntu text editor gedit</a></p>
<p><a href="http://grigio.org/pimp_my_gedit_was_textmate_linux" rel="nofollow">Pimp my gedit</a></p>
http://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate/70192#701923Answer by rjray for Which text/code editor on Linux is most similar to TextMate?rjray2008-09-16T07:52:04Z2008-09-16T07:52:04Z<p>I've been rather fond of jEdit (<a href="http://www.jedit.org" rel="nofollow">http://www.jedit.org</a>) 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, Javscript, HTML/XML/other-ML, CSS, and plenty others.</p>
<p>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.</p>
http://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate/70264#702640Answer by Microserf for Which text/code editor on Linux is most similar to TextMate?Microserf2008-09-16T08:08:25Z2008-09-16T08:08:25Z<p>You can learn Vi, which is a bit frustrating at first but makes you more productive in the long run. </p>
<p>Using <a href="http://www.vim.org/scripts/script.php?script_id=69" rel="nofollow">the project plugin</a> makes Vim a little bit more like TextMate, with an IDE-like explorer.</p>
http://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate/70332#703320Answer by codeape for Which text/code editor on Linux is most similar to TextMate?codeape2008-09-16T08:23:21Z2008-09-16T08:23:21Z<p><a href="http://stackoverflow.com/questions/20735/useful-vim-features">This thread</a> 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.</p>
http://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate/72133#721336Answer by sumek for Which text/code editor on Linux is most similar to TextMate?sumek2008-09-16T13:26:11Z2008-09-16T15:17:50Z<p><a href="http://scribes.sourceforge.net/" rel="nofollow" title="Scribes">Scribes</a> tries to be a TextMate replacement for Linux. </p>
http://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate/73017#730170Answer by Jon Homan for Which text/code editor on Linux is most similar to TextMate?Jon Homan2008-09-16T14:36:47Z2008-09-16T14:36:47Z<p>Google'ing for "linux textmate" returns quite a few results. Must be a popular wish.</p>
<p>I second Gedit. I've used it quite a bit when write Java code for school and also some Python and Bash scripts. </p>
<p>If you look around, there are many tutorials about "tricking" out Gedit:</p>
<p><a href="http://www.micahcarrick.com/09-29-2007/gedit-html-editor.html" rel="nofollow">Gedit html editor</a></p>
<p><a href="http://www.linux.com/feature/138509" rel="nofollow">Gedit plugins</a></p>
<p><a href="http://live.gnome.org/Gedit/Plugins" rel="nofollow">List of Gedit plugins</a></p>
http://stackoverflow.com/questions/70120/which-text-code-editor-on-linux-is-most-similar-to-textmate/73165#731652Answer by Jason Terk for Which text/code editor on Linux is most similar to TextMate?Jason Terk2008-09-16T14:50:37Z2008-09-16T14:50:37Z<p><a href="http://www.gnu.org/software/emacs/" rel="nofollow">Emacs</a>, 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 <a href="http://www.rubyonrails.org/" rel="nofollow">Rails</a>). Emacs is cross platform - it runs on Windows, OS X and, of course, Linux (along with many other more obscure operating systems).</p>
<p>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 "<a href="http://www.google.com/search?q=emacs+cheat+sheet" rel="nofollow">cheat sheet</a>," read about <a href="http://steve.yegge.googlepages.com/effective-emacs" rel="nofollow">useful tweaks to the defaults</a> and give Emacs a try.</p>