mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 9.0.0036: 'fillchars' cannot have window-local values
Problem: 'fillchars' cannot have window-local values. Solution: Make 'fillchars' global-local. (closes #5206)
This commit is contained in:
@@ -2018,7 +2018,7 @@ retnomove:
|
||||
count |= CURSOR_MOVED; // Cursor has moved
|
||||
|
||||
# ifdef FEAT_FOLDING
|
||||
if (mouse_char == fill_foldclosed)
|
||||
if (mouse_char == curwin->w_fill_chars.foldclosed)
|
||||
count |= MOUSE_FOLD_OPEN;
|
||||
else if (mouse_char != ' ')
|
||||
count |= MOUSE_FOLD_CLOSE;
|
||||
|
Reference in New Issue
Block a user