diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-12-26 07:06:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-26 07:06:43 +0100 |
commit | b0196586debd55b9b8be62966084eee12bf0e4ad (patch) | |
tree | 738e9c21a57e31950420cb0533b8a8b2a8838eb0 /src/nvim/mouse.c | |
parent | 927a4f24e09e879ae1006aab32ead81985c61865 (diff) | |
parent | bbad324b175f1bd35201f0ba73fba1b11af7093d (diff) | |
download | rneovim-b0196586debd55b9b8be62966084eee12bf0e4ad.tar.gz rneovim-b0196586debd55b9b8be62966084eee12bf0e4ad.tar.bz2 rneovim-b0196586debd55b9b8be62966084eee12bf0e4ad.zip |
Merge #11568 'fillchars: foldopen, foldsep, foldclose'
Diffstat (limited to 'src/nvim/mouse.c')
-rw-r--r-- | src/nvim/mouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mouse.c b/src/nvim/mouse.c index de2db63651..dab2e44890 100644 --- a/src/nvim/mouse.c +++ b/src/nvim/mouse.c @@ -350,7 +350,7 @@ retnomove: count |= CURSOR_MOVED; // Cursor has moved } - if (mouse_char == '+') { + if (mouse_char == curwin->w_p_fcs_chars.foldclosed) { count |= MOUSE_FOLD_OPEN; } else if (mouse_char != ' ') { count |= MOUSE_FOLD_CLOSE; |