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

@@ -4775,6 +4775,7 @@ set_chars_option(char_u **varp)
{&lcs_space, "space"},
{&lcs_tab2, "tab"},
{&lcs_trail, "trail"},
{&lcs_lead, "lead"},
#ifdef FEAT_CONCEAL
{&lcs_conceal, "conceal"},
#else