mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 14:38:32 +00:00
'fillchars': fix defaults logic; handle ambiwidth=double #7986
Update tests.
This commit is contained in:

committed by
Justin M. Keyes

parent
0c930c2969
commit
384a39479a
@@ -937,7 +937,7 @@ extern char_u *compiled_sys;
|
||||
* directory is not a local directory, globaldir is NULL. */
|
||||
EXTERN char_u *globaldir INIT(= NULL);
|
||||
|
||||
/* Characters from 'listchars' option */
|
||||
// 'listchars' characters. Defaults are overridden in set_chars_option().
|
||||
EXTERN int lcs_eol INIT(= '$');
|
||||
EXTERN int lcs_ext INIT(= NUL);
|
||||
EXTERN int lcs_prec INIT(= NUL);
|
||||
@@ -948,7 +948,7 @@ EXTERN int lcs_tab2 INIT(= NUL);
|
||||
EXTERN int lcs_trail INIT(= NUL);
|
||||
EXTERN int lcs_conceal INIT(= ' ');
|
||||
|
||||
/* Characters from 'fillchars' option */
|
||||
// 'fillchars' characters. Defaults are overridden in set_chars_option().
|
||||
EXTERN int fill_stl INIT(= ' ');
|
||||
EXTERN int fill_stlnc INIT(= ' ');
|
||||
EXTERN int fill_vert INIT(= 9474); // │
|
||||
|
Reference in New Issue
Block a user