aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_defs.h
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2021-03-30 09:26:11 +0800
committerGitHub <noreply@github.com>2021-03-29 21:26:11 -0400
commitf89bfa68692540c2a28794297ce2ab63892de410 (patch)
tree663ec8254eb7e5ecae1fb00b22bf2511052d8b42 /src/nvim/buffer_defs.h
parent291f1ece7f66b16155ad4d418d04be42c45df8ea (diff)
downloadrneovim-f89bfa68692540c2a28794297ce2ab63892de410.tar.gz
rneovim-f89bfa68692540c2a28794297ce2ab63892de410.tar.bz2
rneovim-f89bfa68692540c2a28794297ce2ab63892de410.zip
vim-patch:8.2.2454: leading space can not be made visible (#14138)
Problem: Leading space can not be made visible. Solution: Add "lead:" to 'listchars'. (closes vim/vim#7772) https://github.com/vim/vim/commit/91478ae49a1b2dc1de63821db731a343e855dcc0
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r--src/nvim/buffer_defs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h
index a4105e2796..b36b7beab8 100644
--- a/src/nvim/buffer_defs.h
+++ b/src/nvim/buffer_defs.h
@@ -1201,6 +1201,7 @@ struct window_S {
int tab1; ///< first tab character
int tab2; ///< second tab character
int tab3; ///< third tab character
+ int lead;
int trail;
int conceal;
} w_p_lcs_chars;