diff options
author | Vincent Ambo <vincent@spotify.com> | 2013-07-14T23·06+0200 |
---|---|---|
committer | Vincent Ambo <vincent@spotify.com> | 2013-07-14T23·06+0200 |
commit | 23806edd3ef23f18d68923e13d5bc9d1a36b3ad4 (patch) | |
tree | 91d41370b6782ae2a53e92f72f59521d8c085ee1 /emacs.d/init-bindings.el | |
parent | a5f4b2f479f12eacb4a7e2b52d2c7866cb58bb9c (diff) |
emacs: Some bindings and word jumping
Diffstat (limited to 'emacs.d/init-bindings.el')
-rw-r--r-- | emacs.d/init-bindings.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs.d/init-bindings.el b/emacs.d/init-bindings.el index 57586101f2b1..d60c1cbc037b 100644 --- a/emacs.d/init-bindings.el +++ b/emacs.d/init-bindings.el @@ -15,6 +15,12 @@ ;; Jump to a definition in the current file. (Protip: this is awesome.) (global-set-key (kbd "C-x C-i") 'imenu) +;; Ace-jump-mode +(global-set-key (kbd "M-j") 'ace-jump-char-mode) + +;; Jump to next occurence of char +(global-set-key (kbd "M-m") 'iy-go-to-char) + ;; Window switching. (C-x o goes to the next window) (windmove-default-keybindings) ;; Shift+direction |