Macs are renowned (or bemoaned) for having an extensive number of shortcuts. However, OS X itself pales in comparison to the shortcut lists in TextMate and its bundles.
What are some useful keyboard shortcuts you use?
|
Macs are renowned (or bemoaned) for having an extensive number of shortcuts. However, OS X itself pales in comparison to the shortcut lists in TextMate and its bundles. What are some useful keyboard shortcuts you use?
| |||||||
feedback
|
|
These are my favorite shortcuts:
| ||||
|
feedback
|
| |||
|
feedback
|
|
Personally two of my favourite shortcuts are:
The are both super useful for writing text and blogging, (and stackoverflow). Codewise, I think that I prefer snippets to key shortcuts. Being able to type I also found this quite amusing. But I prefer to learn my shortcuts in small steps, and often find that just looking in the gear menu (⌃⎋) works. | |||
|
feedback
|
|
Esc auto completes common words in the document you are working in. For example if you are using a function alot called "LongFuntionNameThatChecksStuff", you can type Lon [Esc] and it should auto complete. | |||||||
feedback
|
|
Look word up in dictionary, in any Cocoa app (not just Textmate): CONTROL + COMMAND + D
| ||||
|
feedback
|
|
shift+ctrl+alt+v sends selected text to pastie.org also, using the PHP Bundle, try to start writing a function name and do the following: str + alt + F3 = list of available functions str + alt + F1 = short description of the function you've just completed. | ||||
|
feedback
|
|
Take a look at some of these cheatsheets for some good shortcuts:
| |||
|
feedback
|
|
My favourites are:
| |||
|
feedback
|
|
Wrap each selected line in markup tags: SHIFT + CONTROL + COMMAND + W For example, if you have:
Highlight all three lines and presss SHIFT + CONTROL + COMMAND + W to create:
| |||
|
feedback
|
|
Generate Lorem ipsum: lorem + TAB Will generate:
| |||
|
feedback
|
|
in the cftextmate 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. | |||
|
feedback
|
|
I just found a list of shortcut key symbols w/ definitions under Bundles > HTML > Entities - helpful for me in figuring out the whole short-cut bonanza going on with TextMate. | |||
|
feedback
|
|
You can get a really great desktop background here. It has a ton of really useful keyboard shortcuts. I used it for a couple of days before memorizing the most useful ones. | |||
feedback
|
|
Wrap selected text in markup tags: SHIFT + CONTROL + W For example, if you have:
Highlight the text and press SHIFT + CONTROL + W to create:
| |||
|
feedback
|
|
selecting text using alt (via click and drag) then use ⌘ + ] to indent (or [ to dedent) | |||
|
feedback
|
|
Close the nearest open html/xml tag: OPTION + COMMAND + PERIOD For example, if you have:
CONTROL + COMMAND + D will automatically add the closing div tag to create:
| |||
|
feedback
|
|
Go to File: ⌘ + T Find in Project: ⌘ + SHIFT + F | |||||||
feedback
|
|
Format CSS: CONTROL + Q Select some CSS and press control + q to turn this:
Into this:
| |||
|
feedback
|
|
Look up property specifications in W3C: CONTROL + H This works for both HTML and CSS. Place your carrot over whatever property you'd like to look up and press control + h. This will open a new window listing the W3C info. For example, place your carrot over background:
Hit command + h and you'll see something like:
| |||
|
feedback
|
|
Edit the end of multiple selected lines simultaneously : COMMAND + OPTION + A | |||
|
feedback
|
|
(these are mostly html-related) | |||
|
feedback
|
|
Eliminate all whitespace / carriage returns between the location of your carrot and the start of the next piece of content: SHIFT + CONTROLL + J For example, if you have:
Place your carrot at the end of the first paragraph and press SHIFT + CONTROLL + J to remove the space in between the paragraphs:
| |||
|
feedback
|
|
Copy and Paste Clipboard: ⌘ + SHIFT + V | |||||
feedback
|
|
Titleize selected text: CONTROL + OPTION + U Will turn:
Into:
| |||
|
feedback
|
|
Downcase selected text: CONTROL + SHIFT + U Will turn:
Into:
| |||
|
feedback
|
|
Upcase selected text: CONTROL + SHIFT + U Will turn:
Into:
| |||
|
feedback
|
|
Toggle between For example, converts:
to:
| |||
|
feedback
|
|
CMD + / comments out a line and it's smart enough to format based on language. I use it all the time. | |||
|
feedback
|