summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-02-03 15:58:13 +0100
committerBram Moolenaar <Bram@vim.org>2021-02-03 15:58:13 +0100
commit91478ae49a1b2dc1de63821db731a343e855dcc0 (patch)
tree1712c04276688e7664769ca084a5f9a4f76d7ac4 /src/globals.h
parent148be9bc1cca16ce47ad21563f5835682001f9a2 (diff)
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/globals.h')
-rw-r--r--src/globals.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index e601fd6c45..4daa092173 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -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