diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-16 22:02:14 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-17 12:42:28 -0500 |
commit | 402f2bda131d4f5aeb33957766ffb0523f43c879 (patch) | |
tree | e7a4683882415ecefbd576655cf0459f3e575ec3 /src/nvim/ex_getln.c | |
parent | 6a01b3fcc361960e559db459e1524418bc76dd66 (diff) | |
download | rneovim-402f2bda131d4f5aeb33957766ffb0523f43c879.tar.gz rneovim-402f2bda131d4f5aeb33957766ffb0523f43c879.tar.bz2 rneovim-402f2bda131d4f5aeb33957766ffb0523f43c879.zip |
vim-patch:8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Problem: Vim9: no highlight for "s///gc" when using 'opfunc'.
Solution: Reset 'lazyredraw' temporarily. (closes vim/vim#7687)
https://github.com/vim/vim/commit/7c886db915035bc064ca307f02c34ae9d99cc733
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index 626b840798..2aa66f6a8c 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -3828,7 +3828,7 @@ static void cmd_cursor_goto(int row, int col) ui_grid_cursor_goto(grid->handle, row, col); } -void gotocmdline(int clr) +void gotocmdline(bool clr) { if (ui_has(kUICmdline)) { return; |