comparison .elisp/settings/90.keybindings.el @ 126:34b698771af9

emacs keybinding fixes * Stop passing any keys through to the Mac layer * M-shift-f is now textmate-find-in-project * M-p bounces to matching paren (includes new elisp function to do that, is there a built in one?)
author Augie Fackler <durin42@gmail.com>
date Thu, 09 Jul 2009 13:32:06 -0500
parents 0c1db2df2bf8
children d59b0340a85a
comparison
equal deleted inserted replaced
125:15bcc3e0afeb 126:34b698771af9
9 (global-set-key "\M-l" 'goto-line) 9 (global-set-key "\M-l" 'goto-line)
10 ; Sometimes C-h is what Backspace sends in a terminal, and I never use C-h 10 ; Sometimes C-h is what Backspace sends in a terminal, and I never use C-h
11 (global-set-key "\C-h" 'backward-delete-char-untabify) 11 (global-set-key "\C-h" 'backward-delete-char-untabify)
12 ; M-t is what I want for the textmate file finding 12 ; M-t is what I want for the textmate file finding
13 (global-set-key [(meta t)] 'textmate-goto-file) 13 (global-set-key [(meta t)] 'textmate-goto-file)
14 ; M-p for bouncing to the matching paren
15 (global-set-key [(meta p)] 'bounce-to-other-paren)
14 (global-set-key [(meta control f)] 'textmate-find-in-project-type) 16 (global-set-key [(meta control f)] 'textmate-find-in-project-type)
17 (global-set-key [(meta shift f)] 'textmate-find-in-project)
15 (global-set-key [(meta m)] 'iconify-or-deiconify-frame) 18 (global-set-key [(meta m)] 'iconify-or-deiconify-frame)
16 (global-set-key [(control backspace)] 'kill-word) 19 (global-set-key [(control backspace)] 'kill-word)
17 20
18 ;; M-j for jump to function definition 21 ;; M-j for jump to function definition
19 (global-set-key [(meta j)] 'ido-imenu) 22 (global-set-key [(meta j)] 'ido-imenu)