vote up 4 vote down star
3

In the Textmate code-editor I use the Escape-key, for word completion, alot. Is there a way to bind another key-shortcut to its functionality ?

(ps: my CAPSLOCK is already CTRL)

flag

2 Answers

vote up 2 vote down check

To remap the esc key you have to copy

/Applications/TextMate.app/Contents/Resources/KeyBindings.dict

to

~/Library/Application Support/TextMate/KeyBindings.dict

and then edit it, preferably using TextMate :) as Property List Editor messes up the codes.
Look for nextCompletion and previousCompletion and replace their values with whatever suits your needs best.
For example, you could replace \033 (code for esc) to \t (->|).

link|flag
vote up 2 vote down

A much better way to do this (and this applies to all Mac apps in general) is to

  • Open System Preferences > Keyboard & Mouse > Keyboard shortcuts
  • Click the + sign at the bottom
  • Choose TextMate from the application menu
  • Type the exact name of the menu command for next completion and previous completion
  • Now type the shortcut you want to use and click the Add button
link|flag
the escape and tab key functionality does not have menu commands. – Julius Eckert Jul 26 at 10:17
The escape key's menu command should be "Next Completion" (Edit > Completion > Next Completion). (Similarly you could also map "Previous Completion" -- I have mine mapped to Command+K and Command+Shift+K, and they work fine). – Nocturne Jul 26 at 12:12
yay awesome :) thanks a lot – Julius Eckert Jul 28 at 10:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.