diff options
author | Alan Pearce | 2015-06-03 10:10:13 +0200 |
---|---|---|
committer | Alan Pearce | 2015-06-03 10:10:13 +0200 |
commit | 1e8ce4132e6f4b7dd1e3cc9363f675af1ce65d5c (patch) | |
tree | cd9247cab169f5ca2bbf51af66dd3fdc748404a4 /tag-emacs | |
parent | 54926861002591eb27506e1d61feb1b81fa65160 (diff) | |
download | dotfiles-1e8ce4132e6f4b7dd1e3cc9363f675af1ce65d5c.tar.lz dotfiles-1e8ce4132e6f4b7dd1e3cc9363f675af1ce65d5c.tar.zst dotfiles-1e8ce4132e6f4b7dd1e3cc9363f675af1ce65d5c.zip |
Emacs: Ensure avy keybinds are respected
Diffstat (limited to 'tag-emacs')
-rw-r--r-- | tag-emacs/emacs.d/init.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el index 811a112..8e3cb32 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))) |