1
0
forked from aniani/vim

patch 8.2.2454: leading space can not be made visible

Problem:    Leading space can not be made visible.
Solution:   Add "lead:" to 'listchars'. (closes #7772)
This commit is contained in:
Bram Moolenaar
2021-02-03 15:58:13 +01:00
parent 148be9bc1c
commit 91478ae49a
7 changed files with 81 additions and 8 deletions

View File

@@ -1352,6 +1352,7 @@ EXTERN int lcs_tab1 INIT(= NUL);
EXTERN int lcs_tab2 INIT(= NUL);
EXTERN int lcs_tab3 INIT(= NUL);
EXTERN int lcs_trail INIT(= NUL);
EXTERN int lcs_lead INIT(= NUL);
#ifdef FEAT_CONCEAL
EXTERN int lcs_conceal INIT(= ' ');
#endif