aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/drawline.c
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2022-08-21 12:32:25 -0600
committerJosh Rahm <joshuarahm@gmail.com>2022-08-27 20:53:30 -0600
commit2a1e15d2a76d1e0a0a177d87f233e7ceecb25ade (patch)
tree8037d1adef037be7e14577bb807af2b4e7971041 /src/nvim/drawline.c
parent33c115d92a47fb62b06d27074bd7270d30c1e637 (diff)
downloadrneovim-2a1e15d2a76d1e0a0a177d87f233e7ceecb25ade.tar.gz
rneovim-2a1e15d2a76d1e0a0a177d87f233e7ceecb25ade.tar.bz2
rneovim-2a1e15d2a76d1e0a0a177d87f233e7ceecb25ade.zip
feat(colorcolchar): rename colorcol in fillchars to colorc
Rename the colorcol option in fillchars to the more terse colorc.
Diffstat (limited to 'src/nvim/drawline.c')
-rw-r--r--src/nvim/drawline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/drawline.c b/src/nvim/drawline.c
index b97d323ef2..85ea033eb0 100644
--- a/src/nvim/drawline.c
+++ b/src/nvim/drawline.c
@@ -2334,7 +2334,7 @@ int win_line(win_T *wp, linenr_T lnum, int startrow, int endrow, bool nochange,
col_attr = cuc_attr;
} else if (draw_color_col && VCOL_HLC == *color_cols) {
col_attr = mc_attr;
- c = wp->w_p_fcs_chars.colorcol;
+ c = wp->w_p_fcs_chars.colorc;
schar_from_char(linebuf_char[off], c);
}