diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-02-03 15:58:13 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-02-03 15:58:13 +0100 |
commit | 91478ae49a1b2dc1de63821db731a343e855dcc0 (patch) | |
tree | 1712c04276688e7664769ca084a5f9a4f76d7ac4 /src/screen.c | |
parent | 148be9bc1cca16ce47ad21563f5835682001f9a2 (diff) | |
download | vim-git-91478ae49a1b2dc1de63821db731a343e855dcc0.tar.gz |
patch 8.2.2454: leading space can not be made visiblev8.2.2454
Problem: Leading space can not be made visible.
Solution: Add "lead:" to 'listchars'. (closes #7772)
Diffstat (limited to 'src/screen.c')
-rw-r--r-- | src/screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/screen.c b/src/screen.c index 60544b6e9..cd727edb8 100644 --- a/src/screen.c +++ b/src/screen.c @@ -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 |