diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-01-31 15:27:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-31 15:27:01 +0100 |
commit | 79b92da0d289d1adcd0bb27c7ee5786be460c166 (patch) | |
tree | 8cedbea9a81059228303239537cf7fc4346f0d12 /runtime/doc/options.txt | |
parent | f195345c936eaecf423ab79473003e1ab337a17d (diff) | |
download | rneovim-79b92da0d289d1adcd0bb27c7ee5786be460c166.tar.gz rneovim-79b92da0d289d1adcd0bb27c7ee5786be460c166.tar.bz2 rneovim-79b92da0d289d1adcd0bb27c7ee5786be460c166.zip |
vim-patch:partial:f10911e5db16 (#17248)
Update runtime files
https://github.com/vim/vim/commit/f10911e5db16f1fe6ab519c5d091ad0c1df0d063
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 df5fad06a0..82cd743f20 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1220,8 +1220,8 @@ A jump table for the options with a short description can be found at |Q_op|. preferred, because it is much faster. 'charconvert' is not used when reading stdin |--|, because there is no file to convert from. You will have to save the text in a file first. - The expression must return zero or an empty string for success, - non-zero for failure. + The expression must return zero, false or an empty string for success, + non-zero or true for failure. See |encoding-names| for possible encoding names. Additionally, names given in 'fileencodings' and 'fileencoding' are used. @@ -6254,10 +6254,11 @@ A jump table for the options with a short description can be found at |Q_op|. 'tabstop' 'ts' number (default 8) local to buffer Number of spaces that a <Tab> in the file counts for. Also see - |:retab| command, and 'softtabstop' option. + the |:retab| command, and the 'softtabstop' option. Note: Setting 'tabstop' to any other value than 8 can make your file - appear wrong in many places (e.g., when printing it). + appear wrong in many places, e.g., when printing it. + The value must be more than 0 and less than 10000. There are four main ways to use tabs in Vim: 1. Always keep 'tabstop' at 8, set 'softtabstop' and 'shiftwidth' to 4 |