mirror of
https://github.com/m00natic/vlfi.git
synced 2025-10-31 23:21:39 +00:00
Add documentation.
This commit is contained in:
6
vlfi.el
6
vlfi.el
@@ -363,7 +363,8 @@ successful. Return nil if nothing found."
|
|||||||
(delete-overlay overlay)))))
|
(delete-overlay overlay)))))
|
||||||
|
|
||||||
(defun vlfi-re-search-forward (regexp count)
|
(defun vlfi-re-search-forward (regexp count)
|
||||||
"Search forward for REGEXP prefix COUNT number of times."
|
"Search forward for REGEXP prefix COUNT number of times.
|
||||||
|
Search is performed chunk by chunk in `vlfi-batch-size' memory."
|
||||||
(interactive (list (read-regexp "Search whole file"
|
(interactive (list (read-regexp "Search whole file"
|
||||||
(if regexp-history
|
(if regexp-history
|
||||||
(car regexp-history))
|
(car regexp-history))
|
||||||
@@ -372,7 +373,8 @@ successful. Return nil if nothing found."
|
|||||||
(vlfi-re-search regexp count nil))
|
(vlfi-re-search regexp count nil))
|
||||||
|
|
||||||
(defun vlfi-re-search-backward (regexp count)
|
(defun vlfi-re-search-backward (regexp count)
|
||||||
"Search backward for REGEXP prefix COUNT number of times."
|
"Search backward for REGEXP prefix COUNT number of times.
|
||||||
|
Search is performed chunk by chunk in `vlfi-batch-size' memory."
|
||||||
(interactive (list (read-regexp "Search whole file backward"
|
(interactive (list (read-regexp "Search whole file backward"
|
||||||
(if regexp-history
|
(if regexp-history
|
||||||
(car regexp-history))
|
(car regexp-history))
|
||||||
|
|||||||
Reference in New Issue
Block a user