diff options
author | zeertzjq <zeertzjq@outlook.com> | 2021-09-10 16:58:30 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-09-10 16:58:30 +0200 |
commit | f14b8ba1373f569705cb80419248054100b02360 (patch) | |
tree | 57858129c7f87dc01ea87fde7f19133ceaaa9c2b /src/structs.h | |
parent | 07802044b90b2cbcc64b2dfe235f019d7c37589c (diff) | |
download | vim-git-f14b8ba1373f569705cb80419248054100b02360.tar.gz |
patch 8.2.3424: a sequence of spaces is hard to see in list modev8.2.3424
Problem: A sequence of spaces is hard to see in list mode.
Solution: Add the "multispace" option to 'listchars'. (closes #8834)
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index 8a94fc115..eae6cd928 100644 --- a/src/structs.h +++ b/src/structs.h @@ -3376,6 +3376,7 @@ typedef struct int tab3; int trail; int lead; + int *multispace; #ifdef FEAT_CONCEAL int conceal; #endif |