0
0
mirror of https://github.com/vim/vim.git synced 2025-09-30 04:44:14 -04:00

patch 8.1.1453: popup window "moved" property not implemented yet

Problem:    Popup window "moved" property not implemented yet.
Solution:   Implement it.
This commit is contained in:
Bram Moolenaar
2019-06-02 18:40:06 +02:00
parent b0ebbda06c
commit 3397f74ac2
11 changed files with 202 additions and 31 deletions

View File

@@ -1159,6 +1159,9 @@ main_loop(
/* Trigger CursorMoved if the cursor moved. */
if (!finish_op && (
has_cursormoved()
#ifdef FEAT_TEXT_PROP
|| popup_visible
#endif
#ifdef FEAT_CONCEAL
|| curwin->w_p_cole > 0
#endif
@@ -1168,14 +1171,18 @@ main_loop(
if (has_cursormoved())
apply_autocmds(EVENT_CURSORMOVED, NULL, NULL,
FALSE, curbuf);
# ifdef FEAT_CONCEAL
#ifdef FEAT_TEXT_PROP
if (popup_visible)
popup_check_cursor_pos();
#endif
#ifdef FEAT_CONCEAL
if (curwin->w_p_cole > 0)
{
conceal_old_cursor_line = last_cursormoved.lnum;
conceal_new_cursor_line = curwin->w_cursor.lnum;
conceal_update_lines = TRUE;
}
# endif
#endif
last_cursormoved = curwin->w_cursor;
}