From d6247a575c12f413e21ff5e7e94a86214246579d Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Tue, 7 Jun 2022 20:01:46 +0800 Subject: vim-patch:8.2.5066: lcs-leadmultispace https://github.com/vim/vim/commit/aca12fd89b082dd9cc12ae085a84f1805747bbdf --- runtime/doc/options.txt | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'runtime') 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. -- cgit