Mercurial > dotfiles
view .elisp/settings/90.keybindings.el @ 224:7ca719e40c58
modes: enable Go mode if it can be found
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 20 Sep 2010 07:35:29 -0500 |
parents | 5dbff8b65be7 |
children | 3e1ec121efaf |
line wrap: on
line source
;; Key Bindings ; M-backspace kills the current buffer (global-set-key [(meta backspace)] 'kill-this-buffer) (global-set-key "\M-\d" 'kill-this-buffer) ; Save early and often, with only one keystroke (global-set-key [(meta s)] 'save-buffer) ; Typing tab is for lesser editors, make hitting return do that (global-set-key "\C-m" 'indent-new-comment-line) ; M-l makes more sense to me for jumping to a line (global-set-key "\M-l" 'goto-line) ; Sometimes C-h is what Backspace sends in a terminal, and I never use C-h (global-set-key "\C-h" 'backward-delete-char-untabify) ; M-t is what I want for the textmate file finding (global-set-key [(meta t)] 'textmate-goto-file) ; M-p for bouncing to the matching paren (global-set-key [(meta p)] 'bounce-to-other-paren) (global-set-key [(meta control f)] 'textmate-find-in-project-type) (global-set-key [(meta shift f)] 'textmate-find-in-project) (global-set-key [(meta m)] 'iconify-or-deiconify-frame) (global-set-key [(control backspace)] 'kill-word) (global-set-key [f3] 'next-error) (global-set-key [f5] 'diff-apply-hunk) ;; M-j for jump to function definition (global-set-key [(meta j)] 'textmate-goto-symbol) ;; commit emacs heresy? (global-set-key [(meta r)] 'execute-extended-command) ;; Mac-like keybindings for undo/cut/copy/paste (global-set-key [(meta c)] 'kill-ring-save) (global-set-key [(meta x)] 'kill-region) (global-set-key [(meta z)] 'undo) (global-set-key [(meta v)] 'yank) (global-set-key [M-return] 'fullscreen) (global-set-key [(control v)] 'yank-pop) ;; Fixup hooks for modes that like taking my keys back (add-hook 'text-mode-hook '(lambda () (define-key text-mode-map "\M-s" 'save-buffer))) (add-hook 'comint-mode-hook '(lambda () (local-set-key "\M-r" 'execute-extended-command))) (defun server-save-buffer-and-finish () (interactive) (save-buffer) (server-edit)) (add-hook 'server-switch-hook '(lambda ()(local-set-key "\M-s" 'server-save-buffer-and-finish )))