What are some useful TextMate shortcuts? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T16:30:04Zhttp://stackoverflow.com/feeds/question/99807http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/99807/what-are-some-useful-textmate-shortcuts11What are some useful TextMate shortcuts?Thanatos2008-09-19T05:10:00Z2009-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#998391Answer by ethyreal for What are some useful TextMate shortcuts?ethyreal2008-09-19T05:16:36Z2008-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 "<" 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#999011Answer by micahwittman for What are some useful TextMate shortcuts?micahwittman2008-09-19T05:35:06Z2008-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#9996711Answer by Magnar for What are some useful TextMate shortcuts?Magnar2008-09-19T05:54:01Z2009-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#1005283Answer by Matt for What are some useful TextMate shortcuts?Matt2008-09-19T08:39:26Z2008-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#1082164Answer by melfar for What are some useful TextMate shortcuts?melfar2008-09-20T13:58:27Z2008-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#1082841Answer by Bill Turner for What are some useful TextMate shortcuts?Bill Turner2008-09-20T14:22:34Z2008-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 & 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#2628571Answer by Nate Smith for What are some useful TextMate shortcuts?Nate Smith2008-11-04T18:30:34Z2008-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#5254801Answer by alamodey for What are some useful TextMate shortcuts?alamodey2009-02-08T09:58:06Z2009-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#11380371Answer by svnlto for What are some useful TextMate shortcuts?svnlto2009-07-16T14:33:24Z2009-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>