branch: master commit 53706d2ebf8ea5d02e3d0229656f8e5369b9440a Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
avy.el (avy-all-windows-alt): Change the default to nil Fixes #144 --- avy.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/avy.el b/avy.el index d1803af..d3d9d50 100644 --- a/avy.el +++ b/avy.el @@ -453,9 +453,10 @@ multiple DISPLAY-FN invokations." (t (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]." :type '(choice + (const :tag "Current window" nil) (const :tag "All windows on the current frame" t) (const :tag "All windows on all frames" all-frames)))