Mercurial > vim
comparison src/proto/screen.pro @ 13400:c415cdd49ea4 v8.0.1574
patch 8.0.1574: show cursor in wrong place when using popup menu
commit https://github.com/vim/vim/commit/987723e084660290270b3c3d943eb13bd828d5da
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Mar 6 11:43:04 2018 +0100
patch 8.0.1574: show cursor in wrong place when using popup menu
Problem: Show cursor in wrong place when using popup menu. (Wei Zhang)
Solution: Force updating the cursor position. Fix skipping over unused
entries.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 06 Mar 2018 11:45:05 +0100 |
parents | 854f49cf0abe |
children | 156ebdcb8ef5 |
comparison
equal
deleted
inserted
replaced
13399:ad9ed174d094 | 13400:c415cdd49ea4 |
---|---|
42 void screenclear(void); | 42 void screenclear(void); |
43 int can_clear(char_u *p); | 43 int can_clear(char_u *p); |
44 void screen_start(void); | 44 void screen_start(void); |
45 void windgoto(int row, int col); | 45 void windgoto(int row, int col); |
46 void setcursor(void); | 46 void setcursor(void); |
47 void setcursor_mayforce(int force); | |
47 int win_ins_lines(win_T *wp, int row, int line_count, int invalid, int mayclear); | 48 int win_ins_lines(win_T *wp, int row, int line_count, int invalid, int mayclear); |
48 int win_del_lines(win_T *wp, int row, int line_count, int invalid, int mayclear, int clear_attr); | 49 int win_del_lines(win_T *wp, int row, int line_count, int invalid, int mayclear, int clear_attr); |
49 int screen_ins_lines(int off, int row, int line_count, int end, int clear_attr, win_T *wp); | 50 int screen_ins_lines(int off, int row, int line_count, int end, int clear_attr, win_T *wp); |
50 int screen_del_lines(int off, int row, int line_count, int end, int force, int clear_attr, win_T *wp); | 51 int screen_del_lines(int off, int row, int line_count, int end, int force, int clear_attr, win_T *wp); |
51 int showmode(void); | 52 int showmode(void); |