avy.el (avy-all-windows-alt): Change the default to nil

Fixes #144
This commit is contained in:
Oleh Krehel 2016-04-21 10:24:52 +02:00
parent 4c072be8e6
commit 53706d2ebf

3
avy.el
View File

@ -453,9 +453,10 @@ multiple DISPLAY-FN invokations."
(t (t
(error "Unrecognized option: %S" avy-all-windows)))) (error "Unrecognized option: %S" avy-all-windows))))
(defcustom avy-all-windows-alt t (defcustom avy-all-windows-alt nil
"The alternative `avy-all-windows' for use with \\[universal-argument]." "The alternative `avy-all-windows' for use with \\[universal-argument]."
:type '(choice :type '(choice
(const :tag "Current window" nil)
(const :tag "All windows on the current frame" t) (const :tag "All windows on the current frame" t)
(const :tag "All windows on all frames" all-frames))) (const :tag "All windows on all frames" all-frames)))