emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/evil-visualstar 87a5bd8457 14/19: reworded comment and bum


From: ELPA Syncer
Subject: [nongnu] elpa/evil-visualstar 87a5bd8457 14/19: reworded comment and bumped version nr
Date: Thu, 6 Jan 2022 04:00:25 -0500 (EST)

branch: elpa/evil-visualstar
commit 87a5bd845759c5e5508de2e2aed2a99424995d44
Author: Guido Van Hoecke <guivho@gmail.com>
Commit: Guido Van Hoecke <guivho@gmail.com>

    reworded comment and bumped version nr
---
 evil-visualstar.el | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/evil-visualstar.el b/evil-visualstar.el
index 3aa9568f85..d4e7c6c8a2 100644
--- a/evil-visualstar.el
+++ b/evil-visualstar.el
@@ -6,7 +6,7 @@
 ;; Filename: evil-visualstar.el
 ;; Description: Starts a * or # search from the visual selection
 ;; Created: 2013-09-24
-;; Version: 0.1.0
+;; Version: 0.2.0
 ;; Keywords: evil vim visualstar
 ;; Package-Requires: ((evil "0"))
 ;;
@@ -40,15 +40,19 @@
 ;;
 ;; Make a visual selection with `v` or `V`, and then hit `*` to search
 ;; the selection forward, or # to search that selection backward.
+;;
+;; If the evil-visualstar/persistent option is not nil, visual-state
+;; will remain in effect, allowing for repeated * or #.
 
 ;;; Code:
 
 (require 'evil)
 
 (defvar evil-visualstar/persistent nil
-  "Set to t if * or # should keep visual-mode.
-This allows for repeated use of * in # but keeps vusual mode.
-You'd need to hit escape to leave visual-mode.")
+  "Set to `t` if `*` and `#` should keep visual-mode.
+That would visually-select the found occurrence, allowing for
+repeated searches.
+You will need to hit escape to leave visual-mode.")
 
 (defun evil-visualstar/begin-search (beg end direction)
   (when (evil-visual-state-p)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]