diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-03-19 11:10:15 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-19 11:10:15 +0000 |
commit | e7a74d53754765f22ef8ce71c915bb669d5f7f3f (patch) | |
tree | 535427e0114c148aba4aac41987d3ae7aab18cb3 /src/proto | |
parent | 2995e5cf4eb9651827788e14f9f42ab34ce4c7e1 (diff) | |
download | vim-git-e7a74d53754765f22ef8ce71c915bb669d5f7f3f.tar.gz |
patch 8.2.4591: cursor line not updated when a callback moves the cursorv8.2.4591
Problem: Cursor line not updated when a callback moves the cursor.
Solution: Check if the cursor moved. (closes #9970)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/drawscreen.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/drawscreen.pro b/src/proto/drawscreen.pro index c83501986..573a2a4c0 100644 --- a/src/proto/drawscreen.pro +++ b/src/proto/drawscreen.pro @@ -8,6 +8,7 @@ void update_curbuf(int type); void update_debug_sign(buf_T *buf, linenr_T lnum); void updateWindow(win_T *wp); int redraw_asap(int type); +void check_redraw_cursorline(void); void redraw_after_callback(int call_update_screen, int do_message); void redraw_later(int type); void redraw_win_later(win_T *wp, int type); |