diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-02 18:40:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-02 18:40:06 +0200 |
commit | 3397f74ac2ac27f1eef48e950c3c8eeb0338fe55 (patch) | |
tree | 7ca95e2cfc692c2d90830948c4a4a6c1b620cd22 /src/gui.c | |
parent | b0ebbda06cf1a4a7c40cb274529c4c53de534e32 (diff) | |
download | vim-git-3397f74ac2ac27f1eef48e950c3c8eeb0338fe55.tar.gz |
patch 8.1.1453: popup window "moved" property not implemented yetv8.1.1453
Problem: Popup window "moved" property not implemented yet.
Solution: Implement it.
Diffstat (limited to 'src/gui.c')
-rw-r--r-- | src/gui.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -5117,6 +5117,9 @@ gui_update_screen(void) /* 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 @@ -5124,6 +5127,10 @@ gui_update_screen(void) { if (has_cursormoved()) apply_autocmds(EVENT_CURSORMOVED, NULL, NULL, FALSE, curbuf); +#ifdef FEAT_TEXT_PROP + if (popup_visible) + popup_check_cursor_pos(); +#endif # ifdef FEAT_CONCEAL if (curwin->w_p_cole > 0) { |