mirror of
https://github.com/m00natic/vlfi.git
synced 2025-02-07 13:40:49 +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
|
* View Large Files
|
||||||
|
|
||||||
Emacs minor mode that allows viewing, editing and searching large
|
Emacs minor mode that allows viewing, editing, searching and comparing
|
||||||
files in batches. Batch size can be adjusted on the fly and bounds
|
large files in batches. Batch size can be adjusted on the fly and
|
||||||
the memory that is to be used for operations on the file.
|
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
|
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:
|
what it does in a nutshell:
|
||||||
|
21
vlf.el
21
vlf.el
@ -27,9 +27,9 @@
|
|||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
;; This package provides the M-x vlf command, which visits part of
|
;; This package provides the M-x vlf command, which visits part of
|
||||||
;; large file without loading it entirely.
|
;; large file without loading it entirely. The buffer uses VLF mode,
|
||||||
;; The buffer uses VLF mode, which provides several commands for
|
;; which provides several commands for moving around, searching,
|
||||||
;; moving around, searching and editing selected part of file.
|
;; comparing and editing selected part of file.
|
||||||
;; To have it offered when opening large files:
|
;; To have it offered when opening large files:
|
||||||
;; (require 'vlf-integrate)
|
;; (require 'vlf-integrate)
|
||||||
|
|
||||||
@ -41,18 +41,17 @@
|
|||||||
|
|
||||||
(require 'vlf-base)
|
(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"
|
(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"
|
(autoload 'vlf-re-search-backward "vlf-search"
|
||||||
"Search backward for REGEXP prefix COUNT number of times.")
|
"Search backward for REGEXP prefix COUNT number of times." t)
|
||||||
(autoload 'vlf-goto-line "vlf-search" "Go to line.")
|
(autoload 'vlf-goto-line "vlf-search" "Go to line." t)
|
||||||
(autoload 'vlf-occur "vlf-occur"
|
(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"
|
(autoload 'vlf-toggle-follow "vlf-follow"
|
||||||
"Toggle continuous chunk recenter around current point.")
|
"Toggle continuous chunk recenter around current point." t)
|
||||||
(autoload 'vlf-stop-follow "vlf-follow"
|
(autoload 'vlf-stop-follow "vlf-follow" "Stop continuous recenter." t)
|
||||||
"Stop continuous recenter.")
|
|
||||||
(autoload 'vlf-ediff-buffers "vlf-ediff"
|
(autoload 'vlf-ediff-buffers "vlf-ediff"
|
||||||
"Run batch by batch ediff over VLF buffers." t)
|
"Run batch by batch ediff over VLF buffers." t)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user