branch: externals/vlf
commit d7766f2a3bd9b42c397b2bfdee475b6195e1d12a
Author: Andrey Kotlarski <[email protected]>
Commit: Andrey Kotlarski <[email protected]>
Update documentation and mark autoloaded functions as interactive.
---
README.org | 8 +++++---
vlf.el | 21 ++++++++++-----------
2 files changed, 15 insertions(+), 14 deletions(-)
diff --git a/README.org b/README.org
index e6af8ec..356fa79 100644
--- a/README.org
+++ b/README.org
@@ -1,8 +1,10 @@
* View Large Files
-Emacs minor mode that allows viewing, editing and searching large
-files in batches. Batch size can be adjusted on the fly and bounds
-the memory that is to be used for operations on the file.
+Emacs minor mode that allows viewing, editing, searching and comparing
+large files in batches. Batch size can be adjusted on the fly and
+bounds the memory that is to be used for operations on the file. This
+way multiple large files can be instantly and simultaneously accessed
+without swapping and degraded performance.
This is development version of the GNU ELPA
[[http://elpa.gnu.org/packages/vlf][vlf.el]] package. Here's
what it does in a nutshell:
diff --git a/vlf.el b/vlf.el
index bb35ebb..18f274b 100644
--- a/vlf.el
+++ b/vlf.el
@@ -27,9 +27,9 @@
;;; Commentary:
;; This package provides the M-x vlf command, which visits part of
-;; large file without loading it entirely.
-;; The buffer uses VLF mode, which provides several commands for
-;; moving around, searching and editing selected part of file.
+;; large file without loading it entirely. The buffer uses VLF mode,
+;; which provides several commands for moving around, searching,
+;; comparing and editing selected part of file.
;; To have it offered when opening large files:
;; (require 'vlf-integrate)
@@ -41,18 +41,17 @@
(require 'vlf-base)
-(autoload 'vlf-write "vlf-write" "Write current chunk to file.")
+(autoload 'vlf-write "vlf-write" "Write current chunk to file." t)
(autoload 'vlf-re-search-forward "vlf-search"
- "Search forward for REGEXP prefix COUNT number of times.")
+ "Search forward for REGEXP prefix COUNT number of times." t)
(autoload 'vlf-re-search-backward "vlf-search"
- "Search backward for REGEXP prefix COUNT number of times.")
-(autoload 'vlf-goto-line "vlf-search" "Go to line.")
+ "Search backward for REGEXP prefix COUNT number of times." t)
+(autoload 'vlf-goto-line "vlf-search" "Go to line." t)
(autoload 'vlf-occur "vlf-occur"
- "Make whole file occur style index for REGEXP.")
+ "Make whole file occur style index for REGEXP." t)
(autoload 'vlf-toggle-follow "vlf-follow"
- "Toggle continuous chunk recenter around current point.")
-(autoload 'vlf-stop-follow "vlf-follow"
- "Stop continuous recenter.")
+ "Toggle continuous chunk recenter around current point." t)
+(autoload 'vlf-stop-follow "vlf-follow" "Stop continuous recenter." t)
(autoload 'vlf-ediff-buffers "vlf-ediff"
"Run batch by batch ediff over VLF buffers." t)