From 4704e50eb334915e515a1898f8221a7dadfb9257 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Tue, 27 Mar 2018 11:13:05 -0700 Subject: [PATCH] skip avy if we're not in emacs25 --- emacs_el/configuration/don-configuration.org | 1 + 1 file changed, 1 insertion(+) diff --git a/emacs_el/configuration/don-configuration.org b/emacs_el/configuration/don-configuration.org index 5467a8b..6265a5b 100644 --- a/emacs_el/configuration/don-configuration.org +++ b/emacs_el/configuration/don-configuration.org @@ -310,6 +310,7 @@ value, scrolling continues until there is no more output. *** Avy #+BEGIN_SRC emacs-lisp (use-package avy + :if (>= emacs-major-version 25) :ensure t :bind (("C-c C-" . avy-goto-word-or-subword-1) ("C-c j j" . avy-goto-word-or-subword-1) -- 2.39.5