diff options
author | Jack Danger Canty <jackdanger@squareup.com> | 2015-01-19 22:21:14 -0800 |
---|---|---|
committer | Jack Danger Canty <jackdanger@squareup.com> | 2015-01-22 21:57:03 -0800 |
commit | 19c22cdb80e30711be5af33cb6726566ad629944 (patch) | |
tree | e83b3e922b402921da48d721b7b8199b6a0a62f2 /runtime/doc/options.txt | |
parent | d550eecf7092397d064df26850d4a09d9ab4a481 (diff) | |
download | rneovim-19c22cdb80e30711be5af33cb6726566ad629944.tar.gz rneovim-19c22cdb80e30711be5af33cb6726566ad629944.tar.bz2 rneovim-19c22cdb80e30711be5af33cb6726566ad629944.zip |
"halfway a line" is a very confusing phrase
If you Google for this phrase found in the Vim documentation you'll find
almost exclusively hits from the Vim documentation. I think changing
"halfway a line" to "halfway through a line" makes more sense.
There seems to be an pervasive odd use of the word 'halfway' in the
original docs which I'm updating everywhere.
Diffstat (limited to 'runtime/doc/options.txt')
-rw-r--r-- | runtime/doc/options.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index b707fb40f9..6c14d8e8fd 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1173,7 +1173,7 @@ A jump table for the options with a short description can be found at |Q_op|. Some applications use the BOM to recognize the encoding of the file. Often used for UCS-2 files on MS-Windows. For other applications it causes trouble, for example: "cat file1 file2" makes the BOM of file2 - appear halfway the resulting file. Gcc doesn't accept a BOM. + appear halfway through the resulting file. Gcc doesn't accept a BOM. When Vim reads a file and 'fileencodings' starts with "ucs-bom", a check for the presence of the BOM is done and 'bomb' set accordingly. Unless 'binary' is set, it is removed from the first line, so that you @@ -1998,9 +1998,10 @@ A jump table for the options with a short description can be found at |Q_op|. Also see the '<' flag below. *cpo-K* K Don't wait for a key code to complete when it is - halfway a mapping. This breaks mapping <F1><F1> when - only part of the second <F1> has been read. It - enables cancelling the mapping by typing <F1><Esc>. + halfway through a mapping. This breaks mapping + <F1><F1> when only part of the second <F1> has been + read. It enables cancelling the mapping by typing + <F1><Esc>. *cpo-l* l Backslash in a [] range in a search pattern is taken literally, only "\]", "\^", "\-" and "\\" are special. |