summary refs log tree commit diff stats
path: root/tag-emacs
diff options
context:
space:
mode:
authorAlan Pearce2015-05-21 14:09:32 +0200
committerAlan Pearce2015-05-21 14:09:32 +0200
commite6d7513cc93c24cdcb839384bba3e9714c1e8601 (patch)
tree7b3c407e05d9793adddfed57adae91adb006a971 /tag-emacs
parent409e833300a6b7172a441bd2f7c3cc1ed8c810e3 (diff)
downloaddotfiles-e6d7513cc93c24cdcb839384bba3e9714c1e8601.tar.lz
dotfiles-e6d7513cc93c24cdcb839384bba3e9714c1e8601.tar.zst
dotfiles-e6d7513cc93c24cdcb839384bba3e9714c1e8601.zip
Emacs: Bind C-| to avy-go-to-line
Diffstat (limited to 'tag-emacs')
-rw-r--r--tag-emacs/emacs.d/init.el3
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)