mirror of
https://github.com/m00natic/vlfi.git
synced 2025-01-18 12:05:31 +00:00
Update documentation and mark autoloaded functions as interactive.
This commit is contained in:
parent
30d2bb0d25
commit
d7766f2a3b
@ -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:
|
||||
|
21
vlf.el
21
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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user