vim-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 vim/vim#3810)

83a52171ba
This commit is contained in:
Marco Hinz
2019-01-25 16:45:29 +01:00
parent 2418aa3a4a
commit 2ae97f3d4c
6 changed files with 115 additions and 25 deletions

View File

@@ -1016,6 +1016,7 @@ struct window_S {
int space;
int tab1; ///< first tab character
int tab2; ///< second tab character
int tab3; ///< third tab character
int trail;
int conceal;
} w_p_lcs_chars;