diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-08-01 16:45:37 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-08-01 16:51:53 +0200 |
commit | 47b4eb110da8dfab1fca51ce4cc68b224d85b966 (patch) | |
tree | 0d473109bee0f447d6f0e4eef33f46cb865e11df /runtime/doc | |
parent | 87140f234ac1f152f6f273dee5ab1e42c7b1d78b (diff) | |
download | rneovim-47b4eb110da8dfab1fca51ce4cc68b224d85b966.tar.gz rneovim-47b4eb110da8dfab1fca51ce4cc68b224d85b966.tar.bz2 rneovim-47b4eb110da8dfab1fca51ce4cc68b224d85b966.zip |
vim-patch:4c92e75dd4dd
Update runtime files.
https://github.com/vim/vim/commit/4c92e75dd4ddb68dd92a86dd02d53c70dd4af33a
vim-patch:c854898881c0
Revert change accidentally included in runtime file updates. Closes vim/vim#3998.
https://github.com/vim/vim/commit/c854898881c02259f90170f210bf65bbd20cc1fc
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/change.txt | 2 | ||||
-rw-r--r-- | runtime/doc/digraph.txt | 4 | ||||
-rw-r--r-- | runtime/doc/eval.txt | 11 | ||||
-rw-r--r-- | runtime/doc/filetype.txt | 9 | ||||
-rw-r--r-- | runtime/doc/pattern.txt | 2 | ||||
-rw-r--r-- | runtime/doc/print.txt | 7 | ||||
-rw-r--r-- | runtime/doc/russian.txt | 3 | ||||
-rw-r--r-- | runtime/doc/tagsrch.txt | 3 | ||||
-rw-r--r-- | runtime/doc/usr_45.txt | 6 |
9 files changed, 25 insertions, 22 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt index ee70e95ab2..2259eddb6a 100644 --- a/runtime/doc/change.txt +++ b/runtime/doc/change.txt @@ -600,11 +600,11 @@ Directory for temporary files is created in the first suitable directory of: For the {pattern} see |pattern|. {string} can be a literal string, or something special; see |sub-replace-special|. - *E939* When [range] and [count] are omitted, replace in the current line only. When [count] is given, replace in [count] lines, starting with the last line in [range]. When [range] is omitted start in the current line. + *E939* [count] must be a positive number. Also see |cmdline-ranges|. diff --git a/runtime/doc/digraph.txt b/runtime/doc/digraph.txt index 953a65f125..b106e625f2 100644 --- a/runtime/doc/digraph.txt +++ b/runtime/doc/digraph.txt @@ -50,6 +50,10 @@ conversion to be available, it might fail. For the NUL character you will see "10". That's because NUL characters are internally represented with a NL character. When you write the file it will become a NUL character. +Example: > + digraph oe 339 +This defines the "oe" digraph for a character that is number 339 in Unicode. + ============================================================================== 2. Using digraphs *digraphs-use* diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 1a5268faf3..cfc183ec42 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -6341,8 +6341,7 @@ printf({fmt}, {expr1} ...) *printf()* *printf-S* S The text of the String argument is used. If a precision is specified, no more display cells than the - number specified are used. Without the |+multi_byte| - feature works just like 's'. + number specified are used. *printf-f* *E807* f F The Float argument is converted into a string of the @@ -7990,10 +7989,10 @@ strcharpart({src}, {start} [, {len}]) *strcharpart()* strdisplaywidth({expr} [, {col}]) *strdisplaywidth()* The result is a Number, which is the number of display cells - String {expr} occupies on the screen when it starts at {col}. - When {col} is omitted zero is used. Otherwise it is the - screen column where to start. This matters for Tab - characters. + String {expr} occupies on the screen when it starts at {col} + (first column is zero). When {col} is omitted zero is used. + Otherwise it is the screen column where to start. This + matters for Tab characters. The option settings of the current window are used. This matters for anything that's displayed differently, such as 'tabstop' and 'display'. diff --git a/runtime/doc/filetype.txt b/runtime/doc/filetype.txt index a4a5d6188b..ad834e1f6c 100644 --- a/runtime/doc/filetype.txt +++ b/runtime/doc/filetype.txt @@ -599,6 +599,15 @@ your |vimrc|: > let rrst_dynamic_comments = 0 +RESTRUCTUREDTEXT *ft-rst-plugin* + +The following formatting setting are optionally available: > + setlocal expandtab shiftwidth=3 softtabstop=3 tabstop=8 + +To enable this behavior, set the following variable in your vimrc: > + let g:rst_style = 1 + + RPM SPEC *ft-spec-plugin* Since the text for this plugin is rather long it has been put in a separate diff --git a/runtime/doc/pattern.txt b/runtime/doc/pattern.txt index 5d2c0e97b8..9e68bb8af1 100644 --- a/runtime/doc/pattern.txt +++ b/runtime/doc/pattern.txt @@ -1125,7 +1125,7 @@ x A single character, with no special meaning, matches itself The "Func" column shows what library function is used. The implementation depends on the system. Otherwise: (1) Uses islower() for ASCII and Vim builtin rules for other - characters when built with the |+multi_byte| feature. + characters. (2) Uses Vim builtin rules (3) As with (1) but using isupper() */[[=* *[==]* diff --git a/runtime/doc/print.txt b/runtime/doc/print.txt index 084ad4e521..a341ce9652 100644 --- a/runtime/doc/print.txt +++ b/runtime/doc/print.txt @@ -99,10 +99,9 @@ not recognized by Vim will just be converted to lower case and underscores replaced with '-' signs. If 'printencoding' is empty or Vim cannot find the file then it will use -'encoding' (if Vim is compiled with |+multi_byte| and it is set an 8-bit -encoding) to find the print character encoding file. If Vim is unable to find -a character encoding file then it will use the "latin1" print character -encoding file. +'encoding' (if it is set an 8-bit encoding) to find the print character +encoding file. If Vim is unable to find a character encoding file then it +will use the "latin1" print character encoding file. When 'encoding' is set to a multi-byte encoding, Vim will try to convert characters to the printing encoding for printing (if 'printencoding' is empty diff --git a/runtime/doc/russian.txt b/runtime/doc/russian.txt index 724c4f9454..776630a52b 100644 --- a/runtime/doc/russian.txt +++ b/runtime/doc/russian.txt @@ -52,8 +52,7 @@ automatic installs. Vim also needs to be compiled with |+gettext| feature for user interface items translations to work. After downloading an archive from RuVim project, unpack it into your -$VIMRUNTIME directory. We recommend using UTF-8 archive, if your version of -Vim is compiled with |+multi_byte| feature enabled. +$VIMRUNTIME directory. We recommend using UTF-8 archive. In order to use the Russian documentation, make sure you have set the 'helplang' option to "ru". diff --git a/runtime/doc/tagsrch.txt b/runtime/doc/tagsrch.txt index f63535af11..eec217769a 100644 --- a/runtime/doc/tagsrch.txt +++ b/runtime/doc/tagsrch.txt @@ -572,8 +572,7 @@ ignored. (Case is ignored when 'ignorecase' is set and 'tagcase' is The value '2' should be used then: !_TAG_FILE_SORTED<Tab>2<Tab>{anything} ~ -The other tag that Vim recognizes, but only when compiled with the -|+multi_byte| feature, is the encoding of the tags file: +The other tag that Vim recognizes is the encoding of the tags file: !_TAG_FILE_ENCODING<Tab>utf-8<Tab>{anything} ~ Here "utf-8" is the encoding used for the tags. Vim will then convert the tag being searched for from 'encoding' to the encoding of the tags file. And when diff --git a/runtime/doc/usr_45.txt b/runtime/doc/usr_45.txt index be33f0be6d..1ce6969d37 100644 --- a/runtime/doc/usr_45.txt +++ b/runtime/doc/usr_45.txt @@ -152,12 +152,6 @@ language than the text. language, the default should work fine and you don't need to do anything. The following is only relevant when you want to edit different languages. - Note: - Using different encodings only works when Vim was compiled to handle - it. To find out if it works, use the ":version" command and check the - output for "+multi_byte". If it's there, you are OK. If you see - "-multi_byte" you will have to find another Vim. - USING UNICODE IN THE GUI |