summaryrefslogtreecommitdiffstats
path: root/src/proto/screen.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-03-06 11:43:04 +0100
committerBram Moolenaar <Bram@vim.org>2018-03-06 11:43:04 +0100
commit987723e084660290270b3c3d943eb13bd828d5da (patch)
treee7f0329145672eccca05d6e4498b8345bf2c8e8c /src/proto/screen.pro
parent89894aa671ed1db03d95d38cab300702c242239d (diff)
patch 8.0.1574: show cursor in wrong place when using popup menuv8.0.1574
Problem: Show cursor in wrong place when using popup menu. (Wei Zhang) Solution: Force updating the cursor position. Fix skipping over unused entries.
Diffstat (limited to 'src/proto/screen.pro')
-rw-r--r--src/proto/screen.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/screen.pro b/src/proto/screen.pro
index 39424b485b..f04fda51e4 100644
--- a/src/proto/screen.pro
+++ b/src/proto/screen.pro
@@ -44,6 +44,7 @@ int can_clear(char_u *p);
void screen_start(void);
void windgoto(int row, int col);
void setcursor(void);
+void setcursor_mayforce(int force);
int win_ins_lines(win_T *wp, int row, int line_count, int invalid, int mayclear);
int win_del_lines(win_T *wp, int row, int line_count, int invalid, int mayclear, int clear_attr);
int screen_ins_lines(int off, int row, int line_count, int end, int clear_attr, win_T *wp);