diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-09-23 00:39:32 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-09-23 00:39:32 -0400 |
commit | fba105f0d2c5f88d5ade3b73633945d35e1f6707 (patch) | |
tree | c88c11ec67be7db0ccc46aaf01a55f1780238445 | |
parent | e39ab25af351fd78a688baac8c48c614afa45cdd (diff) | |
download | emacs.d-fba105f0d2c5f88d5ade3b73633945d35e1f6707.tar.gz |
Bind recompile-current-compilation to key chord
'e' isn't a great letter for this, but 'c', 'r', and 'g' are already
bound to commonly used commands.
-rw-r--r-- | lisp/init-external.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/init-external.el b/lisp/init-external.el index cea0d1f..b5f5c4f 100644 --- a/lisp/init-external.el +++ b/lisp/init-external.el @@ -83,6 +83,8 @@ monitor setup)." (define-key km/compile-map "r" 'km/recompile-current-compilation) (define-key km/compile-map "o" 'km/display-compilation-other-window) +(key-chord-define-global ",e" 'km/recompile-current-compilation) + ;;; Diff (setq diff-command "/bin/diff" |