diff options
author | David Bürgin <676c7473@gmail.com> | 2015-04-23 06:58:20 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-04-27 04:58:37 -0400 |
commit | 7f0764629495a5e0568ee625e8f89a8121235940 (patch) | |
tree | ae26eb62899ba168d10a17159c4fd1f25ae0af3b /runtime | |
parent | ed464908e491234e4c474cb0277142f55532944e (diff) | |
download | rneovim-7f0764629495a5e0568ee625e8f89a8121235940.tar.gz rneovim-7f0764629495a5e0568ee625e8f89a8121235940.tar.bz2 rneovim-7f0764629495a5e0568ee625e8f89a8121235940.zip |
vim-patch:7.4.710
Problem: It is not possible to make spaces visibible in list mode.
Solution: Add the "space" item to 'listchars'. (David Bürgin, issue 350)
https://github.com/vim/vim/releases/tag/v7-4-710
Closes #2485.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 3ef3e689a6..23284f5852 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -4440,31 +4440,35 @@ A jump table for the options with a short description can be found at |Q_op|. {not in Vi} Strings to use in 'list' mode and for the |:list| command. It is a comma separated list of string settings. - *lcs-eol* + *lcs-eol* eol:c Character to show at the end of each line. When omitted, there is no extra character at the end of the line. - *lcs-tab* + *lcs-tab* tab:xy Two characters to be used to show a tab. The first char is used once. The second char is repeated to fill the space that the tab normally occupies. "tab:>-" will show a tab that takes four spaces as ">---". When omitted, a tab is show as ^I. - *lcs-trail* + *lcs-space* + space:c Character to show for a space. When omitted, spaces + are left blank. + *lcs-trail* trail:c Character to show for trailing spaces. When omitted, - trailing spaces are blank. - *lcs-extends* + trailing spaces are blank. Overrides the "space" + setting for trailing spaces. + *lcs-extends* extends:c Character to show in the last column, when 'wrap' is off and the line continues beyond the right of the screen. - *lcs-precedes* + *lcs-precedes* precedes:c Character to show in the first column, when 'wrap' is off and there is text preceding the character visible in the first column. - *lcs-conceal* + *lcs-conceal* conceal:c Character to show in place of concealed text, when 'conceallevel' is set to 1. - *lcs-nbsp* + *lcs-nbsp* nbsp:c Character to show for a non-breakable space (character 0xA0, 160). Left blank when omitted. @@ -4477,7 +4481,7 @@ A jump table for the options with a short description can be found at |Q_op|. :set lcs=tab:>-,eol:<,nbsp:% :set lcs=extends:>,precedes:< < The "NonText" highlighting will be used for "eol", "extends" and - "precedes". "SpecialKey" for "nbsp", "tab" and "trail". + "precedes". "SpecialKey" for "nbsp", "space", "tab" and "trail". |hl-NonText| |hl-SpecialKey| *'lpl'* *'nolpl'* *'loadplugins'* *'noloadplugins'* |