summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2015-06-03 10:10:13 +0200
committerAlan Pearce2015-06-03 10:10:13 +0200
commit1e8ce4132e6f4b7dd1e3cc9363f675af1ce65d5c (patch)
treecd9247cab169f5ca2bbf51af66dd3fdc748404a4
parent54926861002591eb27506e1d61feb1b81fa65160 (diff)
downloadnixfiles-1e8ce4132e6f4b7dd1e3cc9363f675af1ce65d5c.tar.lz
nixfiles-1e8ce4132e6f4b7dd1e3cc9363f675af1ce65d5c.tar.zst
nixfiles-1e8ce4132e6f4b7dd1e3cc9363f675af1ce65d5c.zip
Emacs: Ensure avy keybinds are respected
-rw-r--r--tag-emacs/emacs.d/init.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el
index 811a112c..8e3cb32a 100644
--- a/tag-emacs/emacs.d/init.el
+++ b/tag-emacs/emacs.d/init.el
@@ -1172,10 +1172,10 @@ symbol, not word, as I need this for programming the most."
             (add-hook 'markdown-mode-hook #'turn-on-auto-fill)))
 
 (req-package avy
-  :bind (("M-g g" . avy-goto-line)
-         ("M-g M-g" . avy-goto-line)
-         ("C-|" . avy-goto-line)
-         ("C-c SPC" . avy-goto-char))
+  :bind* (("M-g 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)
             (setq avy-all-windows nil)))