diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-02-11 00:20:57 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-02-11 00:20:57 -0500 |
commit | afc53f6ebb0a09a5e5fbbf29dddff1abc63fb339 (patch) | |
tree | fc9cb21d722b2b29f36d250b8b87d5a82e9e9f45 /lisp | |
parent | 836e5544d8765ff27772c312d0f464391b5e2918 (diff) | |
download | emacs.d-afc53f6ebb0a09a5e5fbbf29dddff1abc63fb339.tar.gz |
Put compile and recompile under external keymap
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-external.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/init-external.el b/lisp/init-external.el index 343af00..06ce5d5 100644 --- a/lisp/init-external.el +++ b/lisp/init-external.el @@ -22,8 +22,10 @@ other window when an asynchronous command is run." (define-key external-map "t" 'km/open-external-terminal) (define-key external-map "s" 'shell-command) +(define-key external-map "c" 'compile) +(define-key external-map "g" 'recompile) -(global-set-key (kbd "C-c c") 'compile) +;; Give frequently-used recompile a shorter binding. (global-set-key (kbd "C-c g") 'recompile) (provide 'init-external) |