diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-06-09 22:01:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 22:01:32 +0800 |
commit | d189bfaeb2de404455fee699a1c02b8bb8909398 (patch) | |
tree | 20c0d30c3d3cad1c6e6973e80c8c9583655b1a76 /runtime | |
parent | 3da3cfc864e89a2dca6917183915683373c85af8 (diff) | |
parent | b8742afb6f46c165e1f279c8099f112def3acc3b (diff) | |
download | rneovim-d189bfaeb2de404455fee699a1c02b8bb8909398.tar.gz rneovim-d189bfaeb2de404455fee699a1c02b8bb8909398.tar.bz2 rneovim-d189bfaeb2de404455fee699a1c02b8bb8909398.zip |
Merge pull request #18908 from zeertzjq/vim-8.2.5066
vim-patch:8.2.{5066,5070}: lcs-leadmultispace
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index bd484366db..c9f978471f 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -3782,14 +3782,23 @@ A jump table for the options with a short description can be found at |Q_op|. "space" setting is used. For example, `:set listchars=multispace:---+` shows ten consecutive spaces as: - ---+---+-- + ---+---+-- ~ *lcs-lead* lead:c Character to show for leading spaces. When omitted, leading spaces are blank. Overrides the "space" and "multispace" settings for leading spaces. You can combine it with "tab:", for example: > :set listchars+=tab:>-,lead:. -< *lcs-trail* +< *lcs-leadmultispace* + leadmultispace:c... + Like multispace value, but only for leading whitespace + Overrides |lcs-lead| for leading multiple spaces. + `:set listchars=leadmultispace:---+` shows ten consecutive + leading spaces as: + ---+---+--XXX ~ + Where "XXX" denotes the first non-blank characters in + the line. + *lcs-trail* trail:c Character to show for trailing spaces. When omitted, trailing spaces are blank. Overrides the "space" and "multispace" settings for trailing spaces. |