Mercurial > dotfiles
comparison .elisp/settings/90.keybindings.el @ 128:d59b0340a85a
Man, this is what I wanted all along.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Thu, 23 Jul 2009 10:21:50 -0500 |
parents | 34b698771af9 |
children | e30655eb7050 |
comparison
equal
deleted
inserted
replaced
127:932ae5899ff4 | 128:d59b0340a85a |
---|---|
2 ; M-backspace kills the current buffer | 2 ; M-backspace kills the current buffer |
3 (global-set-key [(meta backspace)] 'kill-this-buffer) | 3 (global-set-key [(meta backspace)] 'kill-this-buffer) |
4 ; Save early and often, with only one keystroke | 4 ; Save early and often, with only one keystroke |
5 (global-set-key [(meta s)] 'save-buffer) | 5 (global-set-key [(meta s)] 'save-buffer) |
6 ; Typing tab is for lesser editors, make hitting return do that | 6 ; Typing tab is for lesser editors, make hitting return do that |
7 (global-set-key "\C-m" 'newline-and-indent) | 7 (global-set-key "\C-m" 'indent-new-comment-line) |
8 ; M-l makes more sense to me for jumping to a line | 8 ; M-l makes more sense to me for jumping to a line |
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 |