From a63ea7a5d061a6dd152fd1d81c9aac5b42b66daa Mon Sep 17 00:00:00 2001 From: Andrey Kotlarski Date: Wed, 17 Apr 2013 13:19:37 +0300 Subject: [PATCH] Grammar fixes. --- README.org | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.org b/README.org index 751e420..75160e4 100644 --- a/README.org +++ b/README.org @@ -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.