comparison src/proto/window.pro @ 17051:221d4b82bc0b v8.1.1525

patch 8.1.1525: cannot move a popup window with the mouse commit https://github.com/vim/vim/commit/b53fb31a1e27a806396e38592055cfb3ebf43cf9 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 13 23:59:52 2019 +0200 patch 8.1.1525: cannot move a popup window with the mouse Problem: Cannot move a popup window with the mouse. Solution: Add the "drag" property and make it possible to drag a popup window by its border.
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Jun 2019 00:00:08 +0200
parents f8e28c6ae8ab
children dfd87ef822aa
comparison
equal deleted inserted replaced
17050:f7293a729741 17051:221d4b82bc0b
1 /* window.c */ 1 /* window.c */
2 void do_window(int nchar, long Prenum, int xchar); 2 void do_window(int nchar, long Prenum, int xchar);
3 void get_wincmd_addr_type(char_u *arg, exarg_T *eap); 3 void get_wincmd_addr_type(char_u *arg, exarg_T *eap);
4 int win_split(int size, int flags); 4 int win_split(int size, int flags);
5 int win_split_ins(int size, int flags, win_T *new_wp, int dir); 5 int win_split_ins(int size, int flags, win_T *new_wp, int dir);
6 int win_valid_popup(win_T *win);
6 int win_valid(win_T *win); 7 int win_valid(win_T *win);
7 int win_valid_any_tab(win_T *win); 8 int win_valid_any_tab(win_T *win);
8 int win_count(void); 9 int win_count(void);
9 int make_windows(int count, int vertical); 10 int make_windows(int count, int vertical);
10 void win_move_after(win_T *win1, win_T *win2); 11 void win_move_after(win_T *win1, win_T *win2);