diff options
author | Alan Pearce | 2015-05-21 14:09:32 +0200 |
---|---|---|
committer | Alan Pearce | 2015-05-21 14:09:32 +0200 |
commit | e6d7513cc93c24cdcb839384bba3e9714c1e8601 (patch) | |
tree | 7b3c407e05d9793adddfed57adae91adb006a971 /tag-emacs/emacs.d | |
parent | 409e833300a6b7172a441bd2f7c3cc1ed8c810e3 (diff) | |
download | dotfiles-e6d7513cc93c24cdcb839384bba3e9714c1e8601.tar.lz dotfiles-e6d7513cc93c24cdcb839384bba3e9714c1e8601.tar.zst dotfiles-e6d7513cc93c24cdcb839384bba3e9714c1e8601.zip |
Emacs: Bind C-| to avy-go-to-line
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r-- | tag-emacs/emacs.d/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 8bb1651..92525d8 100644 --- a/tag-emacs/emacs.d/init.el +++ b/tag-emacs/emacs.d/init.el @@ -1170,7 +1170,8 @@ symbol, not word, as I need this for programming the most." (req-package avy :bind (("M-g g" . avy-goto-line) - ("M-g M-g" . avy-goto-line) + ("M-g M-g" . avy-goto-line) + ("C-|" . avy-goto-line) ("C-c SPC" . avy-goto-char)) :config (progn (avy-setup-default) |