Skip to content

Commit

Permalink
add commentary and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bling committed Sep 25, 2013
1 parent 4a93eb8 commit 253e8a5
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions evil-visualstar.el
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
;;
Expand All @@ -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:

Expand Down Expand Up @@ -67,5 +75,4 @@
(define-key evil-visual-state-map (kbd "#") 'evil-visualstar/begin-search-backward)

(provide 'evil-visualstar)

;;; evil-visualstar.el ends here

0 comments on commit 253e8a5

Please sign in to comment.