all repos — archive/dotfiles @ cbe302dac081990bb5fe9e84545d022659ef5599

Superseded by nixfiles

Emacs: Don't force-bind M-g bindings

Gnus binds something to M-g that I might want to use
Alan Pearce alan@alanpearce.uk
Wed, 12 Apr 2017 14:45:40 +0200
commit

cbe302dac081990bb5fe9e84545d022659ef5599

parent

f937bfc0e4b8f4946efb0bf65ea20742321f8c79

1 files changed, 5 insertions(+), 5 deletions(-)

jump to
M emacs/.emacs.d/init.orgemacs/.emacs.d/init.org
@@ -2319,11 +2319,11 @@ somehow I prefer it. 
 #+BEGIN_SRC emacs-lisp
 (use-package avy
-  :bind* (("M-g g" . avy-goto-line)
-          ("M-g M-g" . avy-goto-line)
-          ("C-|" . avy-goto-line)
-          ("M-r" . avy-goto-word-1)
-          ("C-c SPC" . avy-goto-char-timer))
+  :bind (("M-g g" . avy-goto-line)
+         ("M-g M-g" . avy-goto-line)
+         ("C-|" . avy-goto-line)
+         ("M-r" . avy-goto-word-1)
+         ("C-c SPC" . avy-goto-char-timer))
   :config (progn
             (avy-setup-default)
             (setq avy-all-windows nil