diff options
author | Josh Rahm <rahm@google.com> | 2021-09-22 11:03:34 -0600 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2022-01-11 14:12:30 -0700 |
commit | 74895adbe461e56b3472408a5acc08ee19833b85 (patch) | |
tree | 604d848bc6c12e53af34a4168b0b15ffa90034dc /src/nvim/option.c | |
parent | aba03932eeade5af887355d6fadb58ad0dda6b89 (diff) | |
download | rneovim-74895adbe461e56b3472408a5acc08ee19833b85.tar.gz rneovim-74895adbe461e56b3472408a5acc08ee19833b85.tar.bz2 rneovim-74895adbe461e56b3472408a5acc08ee19833b85.zip |
Move colorcolumn character option to fillchars.
listchars is not the right place for it.
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 8846a26849..80f74f9d4a 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -3542,6 +3542,7 @@ static char *set_chars_option(win_T *wp, char_u **varp, bool set) { &wp->w_p_fcs_chars.diff, "diff", '-' }, { &wp->w_p_fcs_chars.msgsep, "msgsep", ' ' }, { &wp->w_p_fcs_chars.eob, "eob", '~' }, + { &wp->w_p_fcs_chars.colorcol, "colorcol", NUL }, }; struct chars_tab lcs_tab[] = { { &wp->w_p_lcs_chars.eol, "eol", NUL }, @@ -3553,7 +3554,6 @@ static char *set_chars_option(win_T *wp, char_u **varp, bool set) { &wp->w_p_lcs_chars.lead, "lead", NUL }, { &wp->w_p_lcs_chars.trail, "trail", NUL }, { &wp->w_p_lcs_chars.conceal, "conceal", NUL }, - { &wp->w_p_lcs_chars.colorcol, "colorcol", NUL }, }; if (varp == &p_lcs || varp == &wp->w_p_lcs) { |