branch: elpa/evil-visualstar
commit 253e8a594c978f5110dcd92cecb43a5d8f64d6e0
Author: Bailey Ling <[email protected]>
Commit: Bailey Ling <[email protected]>
add commentary and version bump
---
evil-visualstar.el | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/evil-visualstar.el b/evil-visualstar.el
index 93bcf9677a..9d120e4022 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.0.0
+;; Version: 0.0.1
;; Keywords: evil vim visualstar
;; Package-Requires: ((evil "0"))
;;
@@ -30,6 +30,14 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; Commentary:
+;;
+;; Install:
+;; (require 'evil-visualstar)
+;;
+;; Usage:
+;;
+;; Make a visual selection with `v` or `V`, and then hit `*` to search
+;; the selection forward, or # to search that selection backward.
;;; Code:
@@ -67,5 +75,4 @@
(define-key evil-visual-state-map (kbd "#")
'evil-visualstar/begin-search-backward)
(provide 'evil-visualstar)
-
;;; evil-visualstar.el ends here