diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-03-10 19:46:58 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-03-10 19:47:29 -0800 |
commit | ea20a06ca11d852b6020e97b945de34b0553b822 (patch) | |
tree | e8002c0956c4fba74b31a63a287f280c3bfa7430 /emacs.d/core/core-bindings.el | |
parent | [emacs] Add configuration for scala (diff) | |
download | emacs.d-ea20a06ca11d852b6020e97b945de34b0553b822.tar.gz |
[emacs] Rename a couple of functions
Diffstat (limited to '')
-rw-r--r-- | emacs.d/core/core-bindings.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/emacs.d/core/core-bindings.el b/emacs.d/core/core-bindings.el index ee91bae..629eb54 100644 --- a/emacs.d/core/core-bindings.el +++ b/emacs.d/core/core-bindings.el @@ -4,12 +4,10 @@ (global-set-key (kbd "<s-return>") 'toggle-frame-fullscreen) -(global-set-key (kbd "C-c s") 'fcuny/visit-term-buffer) +(global-set-key (kbd "C-c s") 'fc/visit-term-buffer) -(global-set-key (kbd "s-N") 'fcuny/switch-to-scratch) +(global-set-key (kbd "s-N") 'fc/switch-to-scratch) -(global-set-key (kbd "C-c b") 'fcuny/find-build-file) - -(global-set-key (kbd "C-c r") 'fcuny/build-run-target) +(define-key emacs-lisp-mode-map (kbd "C-c C-e") 'eval-buffer) (provide 'core-bindings) |