branch: elpa/isl
commit 1860b31c330b18ecc7e74db3a087c9eb4c3f6193
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Update help and add no-helm-mx property
---
isearch-light.el | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/isearch-light.el b/isearch-light.el
index b0f84689a27..bf72c774869 100644
--- a/isearch-light.el
+++ b/isearch-light.el
@@ -78,6 +78,8 @@
\\[isl-display-or-quit-help]\t\tDisplay or quit this help buffer
\\[isl-goto-next]\t\tGoto next occurence
\\[isl-goto-prev]\t\tGoto previous occurence
+\\[isl-scroll-down]\t\tScroll down
+\\[isl-scroll-up]\t\tScroll up
\\[isl-exit-at-point]\t\tExit at current position
\\[abort-recursive-edit]\t\tQuit and restore position
\\[isl-yank-word-at-point]\t\tYank word at point
@@ -248,11 +250,13 @@ It put overlay on current position, move to next overlay
using
"Scroll up to closest overlay in next screen."
(interactive)
(isl-scroll-1 1))
+(put 'isl-scroll-up 'no-helm-mx t)
(defun isl-scroll-down ()
"Scroll down to closest overlay in previous screen."
(interactive)
(isl-scroll-1 -1))
+(put 'isl-scroll-down 'no-helm-mx t)
(defun isl--find-and-goto-overlay (overlay)
"Consume iterators up to OVERLAY and jump to it."