aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorJosh Rahm <rahm@google.com>2021-09-22 11:03:34 -0600
committerJosh Rahm <rahm@google.com>2022-01-11 14:12:30 -0700
commit74895adbe461e56b3472408a5acc08ee19833b85 (patch)
tree604d848bc6c12e53af34a4168b0b15ffa90034dc /src/nvim/option.c
parentaba03932eeade5af887355d6fadb58ad0dda6b89 (diff)
downloadrneovim-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.c2
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) {