diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-06 17:47:40 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-06 17:47:40 +0200 |
commit | fa1e90cd4d1bebd66da22df4625f70963f091f17 (patch) | |
tree | 4d129283fee69272fd52f7d88e27b7822b21a3f2 /src/proto | |
parent | d9eefe3155277cec71105f52d34a76f7a3237e7f (diff) | |
download | vim-git-fa1e90cd4d1bebd66da22df4625f70963f091f17.tar.gz |
patch 8.1.1125: libvterm does not handle the window position reportv8.1.1125
Problem: Libvterm does not handle the window position report.
Solution: Let libvterm call the fallback CSI handler when not handling CSI
sequence. Handle the window position report in Vim.
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/ui.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ui.pro b/src/proto/ui.pro index 774a30896..26cfd4715 100644 --- a/src/proto/ui.pro +++ b/src/proto/ui.pro @@ -11,6 +11,7 @@ void suspend_shell(void); int ui_get_shellsize(void); void ui_set_shellsize(int mustset); void ui_new_shellsize(void); +int ui_get_winpos(int *x, int *y, varnumber_T timeout); void ui_breakcheck(void); void ui_breakcheck_force(int force); void clip_init(int can_use); |