What are some useful TextMate shortcuts? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T16:30:04Z http://stackoverflow.com/feeds/question/99807 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts 11 What are some useful TextMate shortcuts? Thanatos 2008-09-19T05:10:00Z 2009-08-25T11:08:48Z <p>Macs are renowned (or bemoaned) for having an extensive number of shortcuts. However, OS X itself pales in comparison to the shortcut lists in <a href="http://macromates.com/" rel="nofollow">TextMate</a> and its bundles.</p> <p>What are some useful keyboard shortcuts you use?</p> http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts/99839#99839 1 Answer by ethyreal for What are some useful TextMate shortcuts? ethyreal 2008-09-19T05:16:36Z 2008-09-19T05:16:36Z <p>in the <a href="http://cftextmate.com/" rel="nofollow">cftextmate</a> bundle you can type any cfml tag without the opening "&lt;" or closing ">" and press tab and it completes the entire tag and you can then tab to each of the tag attributes. i'm not sure if this type of shortcut works for other languages.</p> http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts/99901#99901 1 Answer by micahwittman for What are some useful TextMate shortcuts? micahwittman 2008-09-19T05:35:06Z 2008-09-19T05:35:06Z <p>I just found a list of shortcut key symbols w/ definitions under <strong>Bundles</strong> > <strong>HTML</strong> > <strong>Entities</strong> - helpful for me in figuring out the whole short-cut bonanza going on with TextMate.</p> http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts/99967#99967 11 Answer by Magnar for What are some useful TextMate shortcuts? Magnar 2008-09-19T05:54:01Z 2009-07-16T14:39:21Z <p>These are my favorite shortcuts:</p> <pre><code>cmd+t: Start typing name of a file to open it ctrl+w: Select word cmd+r: Run the ruby or php-script that is open cmd+opt+m: Define a new macro cmd+shift+m: Run the macro hit the opt key: Switch to vertical selection mode cmd+opt+a: Edit ends of selected lines </code></pre> http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts/100528#100528 3 Answer by Matt for What are some useful TextMate shortcuts? Matt 2008-09-19T08:39:26Z 2008-09-19T08:39:26Z <p>Personally two of my favourite shortcuts are:</p> <ul> <li>⌃⇧L (that's ctrl+shift+L): Which wraps the currently selected text with a link to whatever's in the clipboard, and works for every text language I've tried it in.</li> <li>⌃⇧⌘L (that's ctrl+shift+cmd+L): Which googles for the selected text and links to the top result.</li> </ul> <p>The are both super useful for writing text and blogging, (and stackoverflow).</p> <p>Codewise, I think that I prefer snippets to key shortcuts. Being able to type <code>if⇥</code> etc., in almost any language is ridiculously useful, and the consistent interface is what keeps me using TextMate.</p> <p>I also found <a href="http://www.macility.com/images/products/kc/KCTextmate.jpg" rel="nofollow">this</a> quite amusing. But I prefer to learn my shortcuts in small steps, and often find that just looking in the gear menu (⌃⎋) works.</p> http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts/108216#108216 4 Answer by melfar for What are some useful TextMate shortcuts? melfar 2008-09-20T13:58:27Z 2008-09-20T13:58:27Z <ul> <li><code>ctrl+shift+K</code> deletes current line</li> <li><code>ctrl+shift+J</code> merges current line with the next line</li> </ul> http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts/108284#108284 1 Answer by Bill Turner for What are some useful TextMate shortcuts? Bill Turner 2008-09-20T14:22:34Z 2008-09-20T14:22:34Z <p>Take a look at some of these cheatsheets for some good shortcuts:</p> <ul> <li><a href="http://www.rubyinside.com/textmate-cheat-sheet-for-ruby-and-rails-developers-130.html" rel="nofollow">Cheatsheet for Rails &amp; Textmate</a></li> <li>A couple of others linked <a href="http://wiki.macromates.com/Main/UsefulResources" rel="nofollow">here</a></li> </ul> http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts/262857#262857 1 Answer by Nate Smith for What are some useful TextMate shortcuts? Nate Smith 2008-11-04T18:30:34Z 2008-11-04T18:30:34Z <p>You can get a really great desktop background <a href="http://www.wishingline.com/notebook/2007/01/textmateshortcutsdesktop/" rel="nofollow">here</a>. It has a ton of really useful keyboard shortcuts. I used it for a couple of days before memorizing the most useful ones.</p> http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts/525480#525480 1 Answer by alamodey for What are some useful TextMate shortcuts? alamodey 2009-02-08T09:58:06Z 2009-02-08T09:58:06Z <p>My favourites are:</p> <ul> <li>option+command+[ to clean up your indentation</li> <li>"lorem", TAB to insert placeholder text</li> </ul> http://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts/1138037#1138037 1 Answer by svnlto for What are some useful TextMate shortcuts? svnlto 2009-07-16T14:33:24Z 2009-08-25T11:08:48Z <p>shift+ctrl+alt+v sends selected text to pastie.org</p> <p>also, using the PHP Bundle, try to start writing a function name and do the following:</p> <p>str + alt + F3 = list of available functions</p> <p>str + alt + F1 = short description of the function you've just completed.</p>