From 2a1e15d2a76d1e0a0a177d87f233e7ceecb25ade Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Sun, 21 Aug 2022 12:32:25 -0600 Subject: feat(colorcolchar): rename colorcol in fillchars to colorc Rename the colorcol option in fillchars to the more terse colorc. --- src/nvim/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/screen.c') diff --git a/src/nvim/screen.c b/src/nvim/screen.c index eb4eef6e31..954068a388 100644 --- a/src/nvim/screen.c +++ b/src/nvim/screen.c @@ -1328,7 +1328,7 @@ char *set_chars_option(win_T *wp, char_u **varp, bool apply) { &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", ' ' }, + { &wp->w_p_fcs_chars.colorc, "colorc", ' ' }, }; struct chars_tab lcs_tab[] = { -- cgit