What are some useful TextMate features? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T14:59:21Z http://stackoverflow.com/feeds/question/33813 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features 11 What are some useful TextMate features? dF 2008-08-29T02:03:34Z 2009-10-17T08:15:42Z <p>I noticed that many people here use <a href="http://macromates.com/" rel="nofollow">TextMate</a> for coding on OS X. I've recently started using it, and although I like its minimalistic interface, it makes it harder to stumble upon cool features if you don't know what you're looking for.</p> <p>So, what feature have you found most helpful for coding (mainly in Python)? Are there any third-party bundles I should know about, besides what's included?</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/33819#33819 3 Answer by Frank Krueger for What are some useful TextMate features? Frank Krueger 2008-08-29T02:06:35Z 2008-08-29T02:06:35Z <p>The ease of snippet creation.</p> <p>It's trivial to create new snippets that can accomplish a lot using replacements, tabbing order, and regex substitutions. Quickly assigning these to the tab key for specific languages makes me more productive. And makes me worry about code bloat. :-)</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/33821#33821 1 Answer by Rob Bazinet for What are some useful TextMate features? Rob Bazinet 2008-08-29T02:08:13Z 2008-08-29T02:08:13Z <p>It's nice and lightweight and has all of the macros built-in for Ruby and let's you run Ruby code, or any other code for that matter just with a keystroke.</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/33910#33910 9 Answer by hoyhoy for What are some useful TextMate features? hoyhoy 2008-08-29T03:18:05Z 2008-08-29T03:18:05Z <p>Holding down option while dragging allows you to highlight a block of text. If you type while the highlight is active, your keystrokes appear on multiple lines. </p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/33935#33935 7 Answer by Jeremy Banks for What are some useful TextMate features? Jeremy Banks 2008-08-29T03:58:14Z 2008-08-29T03:58:14Z <p>Being able to write simple commands in any scripting language and bind them to a context-specific hotkey.</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/36309#36309 7 Answer by Teifion for What are some useful TextMate features? Teifion 2008-08-30T20:03:18Z 2008-08-30T20:03:18Z <p><a href="http://boagworld.com/podcast/123/" rel="nofollow">I mention some in a review on Boagworld</a>, I find the snippets, project manager, columnar editing (hold down option while selecting stuff or push it after having selected stuff) and CSS scopes for syntax.</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/36316#36316 19 Answer by jlleblanc for What are some useful TextMate features? jlleblanc 2008-08-30T20:14:02Z 2008-08-30T20:14:02Z <p>Don't neglect the 'mate' command line tool. You can use it to pipe output into TextMate, so if you do the following...</p> <pre><code>diff file1.py file2.py | mate </code></pre> <p>...it will not only open in TextMate, but it is smart enough to know that you're looking at a diff and highlight lines on screen.</p> <p>TextMate's SVN integration is great; it also seems to have bundles for some other version control systems as well.</p> <p>Add GetBundle to browse the bundle repository. I found the jQuery bundle through it and it's very handy.</p> <p>As others have mentioned, rolling your own bundle for frequently used snippets is very helpful. If you have some snippets that are specific to a project or framework, you might want to prefix all of them with a common letter to keep the namespace tidy.</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/40045#40045 2 Answer by Charles Roper for What are some useful TextMate features? Charles Roper 2008-09-02T17:05:44Z 2009-03-06T20:17:01Z <p><strong>It is worth noting here that there is a Windows alternative to TextMate called <a href="http://www.e-texteditor.com/" rel="nofollow">E Text Editor</a></strong>. It does pretty much everything TextMate does (apart from macros, but the author is working on this, I think), and even - <em>shock, horror</em> - does some things better, such as the superb bundles editor, the bundles manager, and the branching undo history. <strong>Update: and now there's <a href="http://e-texteditor.com/blog/2008/snippet-pipes" rel="nofollow">Snippet Pipes</a></strong>.</p> <p>So, not exactly a useful feature of TextMate as such, but <em>very</em> useful to know if you're a fan of TextMate and you have to use Windows for whatever reason.</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/66060#66060 4 Answer by pjbeardsley for What are some useful TextMate features? pjbeardsley 2008-09-15T19:38:56Z 2008-09-15T19:38:56Z <p>I like the integrated HTML/XML Tidy. Cmd-shift-H is your friend.</p> <p>Also, nice integration with a variety of scp/sftp clients.</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/76244#76244 2 Answer by Steve Losh for What are some useful TextMate features? Steve Losh 2008-09-16T19:54:09Z 2008-09-16T19:54:09Z <p>Using snippets to expand into large, repetitive blocks of code and then using the tab key to move through and only edit the pieces I need to without having to use the mouse or arrow keys.</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/86602#86602 4 Answer by Matt for What are some useful TextMate features? Matt 2008-09-17T19:19:39Z 2008-09-17T19:19:39Z <p>My favourite two features are auto-completion (bound to ⎋ [esc]), and column editing (bound to ⌥ [alt]) both of these things save me quite a lot of time, and are definitely '<a href="http://www.pragprog.com/titles/textmate/textmate" rel="nofollow" title="The Pragmatic Bookshelf | TextMate">robot ninjas</a>'.</p> <p>The book linked above is also a really useful into to the power of TextMate, although it doesn't specifically mention python.</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/96936#96936 5 Answer by Martin for What are some useful TextMate features? Martin 2008-09-18T21:03:02Z 2009-03-22T19:31:06Z <p>Don't forget "Drag commands". They give you the ability to drag, say, an image into a blog.html document and will then upload it to the proper folder and insert the markup for you.</p> <p><a href="http://ctrloptcmd.com/archives/336/textmate-quicksilver-drag-drop-actionscript-imports/" rel="nofollow">Here</a> is another example of how you can expand further on drag commands if you pair TM up with <a href="http://blacktree.com" rel="nofollow">QuickSilver</a>.</p> <p>(Disclaimer: I wrote the blog post I linked to there. I still think it's cool though.)</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/248289#248289 2 Answer by feoh for What are some useful TextMate features? feoh 2008-10-29T20:24:25Z 2008-10-29T20:24:25Z <p>For me the best features are:</p> <ul> <li>Projects - I know every IDE under the sun has this but TextMate makes this useful for all sorts of editing and text processing tasks, and moreover makes navigating around these projects easy without ever lifting your hands from the keyboard. This is huge for Rails or Grails projects or large programming projects with many modules.</li> <li>The excellent syntax highlighting and 'snippets' for myriad languages and tools</li> <li>The excellent scripting language support (Being able to evaluate chunks of Ruby and the like with a single key chord)</li> <li>The built in Blogging bundle is superb. I now use TextMate exclusively for all my blog posts.</li> <li>Columnar editing</li> <li>The ability to use just about any language or tool to extend TextMate, Ruby, Perl, shell, name your poison.</li> <li>An excellent mix of great Aqua GUI support and excellent command line support through the <code>mate</code> and commands, for instance making it easy and pleasant to use TextMate as your default editor for your SCM.</li> </ul> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/299208#299208 4 Answer by Gabe Hollombe for What are some useful TextMate features? Gabe Hollombe 2008-11-18T16:03:32Z 2008-11-18T16:03:32Z <p>The Navigation menu commands <strong>Go to File</strong> (Command + T) and <strong>Go to Symbol</strong> (Command + Shift + T) are both extremely helpful. </p> <p><strong>Go to File</strong>, which works when you have a project open, lets you type any part of the file name to see only files that match what you've typed. </p> <p><strong>Go to Symbol</strong> has the same type-to-filter interface, but operates on what I'd call the basic block elements of your document. For example, if you're editing a class, Go to Symbol works on the method names, but in a CSS document, you'll be searching on your selectors. It's pretty awesome.</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/618848#618848 0 Answer by DEfusion for What are some useful TextMate features? DEfusion 2009-03-06T13:25:36Z 2009-03-06T13:25:36Z <p>The <code>mate</code> command line tool is great, you can open an individual file or my favourite use of it is to open a directory of files as a project (e.g. <code>mate .</code>)</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/654768#654768 1 Answer by pojo for What are some useful TextMate features? pojo 2009-03-17T15:32:42Z 2009-03-17T15:32:42Z <p>Check out <a href="http://ciaranwal.sh/2008/08/05/textmate-plug-in-projectplus" rel="nofollow">ProjectPlus</a>, it gives some useful options for the sidebar, it has SCM status badges for svn and git (though I find the git thing a bit buggy).</p> <p>I like the fact that it can change the sidebar to an embedded panel on left or right (as opposed to the drawer that's default).</p> http://stackoverflow.com/questions/33813/what-are-some-useful-textmate-features/1581719#1581719 0 Answer by Krzychu Danek for What are some useful TextMate features? Krzychu Danek 2009-10-17T08:15:42Z 2009-10-17T08:15:42Z <p>Checkout <a href="http://code.google.com/p/zen-coding/" rel="nofollow">Zen Coding bundle</a> . It gives you an awesome productivity boost to developing both HTML and CSS.</p>