We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 886c351 commit 8d65312Copy full SHA for 8d65312
evil-easymotion.el
@@ -110,13 +110,13 @@
110
(defun evilem--collect (func &optional scope all-windows initial-point)
111
"Repeatedly execute func, and collect the cursor positions into a list"
112
(if (functionp func)
113
- (let ((points)
114
- (point)
115
- (avy-all-windows all-windows)
116
- ;; make sure the motion doesn't move the window
117
- (scroll-conservatively 101)
118
- (smooth-scroll-margin 0)
119
- (scroll-margin 0))
+ (cl-letf ((points nil)
+ (point nil)
+ (avy-all-windows all-windows)
+ ;; make sure the motion doesn't move the window
+ (scroll-conservatively 101)
+ (smooth-scrolling-mode nil)
+ (scroll-margin 0))
120
(avy-dowindows current-prefix-arg
121
(save-excursion
122
(save-restriction
0 commit comments