1
0
mirror of https://github.com/m00natic/vlfi.git synced 2025-01-18 12:05:31 +00:00

Grammar fixes.

This commit is contained in:
Andrey Kotlarski 2013-04-17 13:19:37 +03:00
parent fbc3a37ce5
commit a63ea7a5d0

View File

@ -44,7 +44,7 @@ Emacs doesn't have bignum support, VLFI will probably not quite work.
** Special mode
VLFI is derived from special mode and keeps all its properties. For
VLFI is derived from special-mode and keeps all its properties. For
example you can directly press digits to enter prefix arguments.
** Changing major mode
@ -63,7 +63,7 @@ haven't changed anything.
You can also set by hand local variable *vlfi-batch-size* and then
refresh with *g*.
** Moving around
** Move around
*M-PgUp* and *M-PgDn* move chunk by chunk. With positive prefix
argument they move prefix number of batches. With negative - append
@ -71,22 +71,22 @@ prefix number of batches.
*[* and *]* take you to the beginning and end of file respectively.
*j* jumps to given chunk (to see where you are in file and how many chunks
there are using the current batch size, look at the bracketed part of
the buffer name, batch size is also there - at the end).
*j* jumps to given chunk. To see where you are in file and how many chunks
there are (using the current batch size), look at the bracketed part
of the buffer name, batch size is also there - at the end.
** Searching whole file
** Search whole file
*s* and *r* search forward and backward respectively over the whole
file. This is done by chunk by chunk so if you have really huge
file - you'd better set somewhat bigger batch size beforehand.
file. This is done chunk by chunk so if you have really huge file -
you'd better set somewhat bigger batch size beforehand.
*l* jumps to given line in file. This is done by searching from the
beginning, so again the bigger current batch size, the quicker.
** Editting
** Edit
*e* enters VLFI in editing mode. If editing doesn't change size of
*e* enters VLFI in edit mode. If editing doesn't change size of
the chunk, only this chunk is saved. Otherwise the remaining part of
the file is adjusted chunk by chunk, so again you'd better have bigger
current batch size. If chunk has been expanded the memory used is
@ -95,6 +95,6 @@ current batch size. If chunk has been expanded the memory used is
** Occur over whole file
*o* builds index for given regular expression just like occur-mode.
It does this chunk by chunk over the whole file. Note that if even if
It does this chunk by chunk over the whole file. Note that even if
you prematurely stop it with *C-g*, it will still show index of what's
found so far.