comparison runtime/doc/options.txt @ 15502:bc17a9d37810 v8.1.0759

patch 8.1.0759: showing two characters for tab is limited commit https://github.com/vim/vim/commit/83a52171ba00b2b9fd2d1d22a07e38fc9fc69c1e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 16 22:41:54 2019 +0100 patch 8.1.0759: showing two characters for tab is limited Problem: Showing two characters for tab is limited. Solution: Allow for a third character for "tab:" in 'listchars'. (Nathaniel Braun, Ken Takata, closes #3810)
author Bram Moolenaar <Bram@vim.org>
date Wed, 16 Jan 2019 22:45:07 +0100
parents 325e4a8ba1b6
children f0f06837a699
comparison
equal deleted inserted replaced
15501:f1ba08812cf2 15502:bc17a9d37810
5061 *lcs-eol* 5061 *lcs-eol*
5062 eol:c Character to show at the end of each line. When 5062 eol:c Character to show at the end of each line. When
5063 omitted, there is no extra character at the end of the 5063 omitted, there is no extra character at the end of the
5064 line. 5064 line.
5065 *lcs-tab* 5065 *lcs-tab*
5066 tab:xy Two characters to be used to show a tab. The first 5066 tab:xy[z] Two or three characters to be used to show a tab.
5067 char is used once. The second char is repeated to 5067 The third character is optional.
5068 fill the space that the tab normally occupies. 5068
5069 "tab:>-" will show a tab that takes four spaces as 5069 tab:xy The 'x' is always used, then 'y' as many times as will
5070 ">---". When omitted, a tab is show as ^I. 5070 fit. Thus "tab:>-" displays:
5071 >
5072 >-
5073 >--
5074 etc.
5075
5076 tab:xyz The 'z' is always used, then 'x' is prepended, and
5077 then 'y' is used as many times as will fit. Thus
5078 "tab:<->" displays:
5079 >
5080 <>
5081 <->
5082 <-->
5083 etc.
5084
5085 When "tab:" is omitted, a tab is shown as ^I.
5071 *lcs-space* 5086 *lcs-space*
5072 space:c Character to show for a space. When omitted, spaces 5087 space:c Character to show for a space. When omitted, spaces
5073 are left blank. 5088 are left blank.
5074 *lcs-trail* 5089 *lcs-trail*
5075 trail:c Character to show for trailing spaces. When omitted, 5090 trail:c Character to show for trailing spaces. When omitted,