diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-04-27 04:59:45 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-04-27 04:59:45 -0400 |
commit | d9441444afa3e99c8116ad01b11614886aa53524 (patch) | |
tree | 4738a37175e40cda2a1d2aac2dfa4bdf2dcaed41 /runtime | |
parent | 5a1a2ba783ba174567ff1c1044b9f0b01b61a0fb (diff) | |
parent | 2632dc5890744085e8cb24a644a50f7e32a92c03 (diff) | |
download | rneovim-d9441444afa3e99c8116ad01b11614886aa53524.tar.gz rneovim-d9441444afa3e99c8116ad01b11614886aa53524.tar.bz2 rneovim-d9441444afa3e99c8116ad01b11614886aa53524.zip |
Merge #2492 'vim-patch:7.4.710-712'
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'* |