]> granicus.if.org Git - vim/commitdiff
patch 7.4.1892 v7.4.1892
authorBram Moolenaar <Bram@vim.org>
Sat, 4 Jun 2016 15:41:03 +0000 (17:41 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 4 Jun 2016 15:41:03 +0000 (17:41 +0200)
Problem:    balloon eval only gets the window number, not the ID.
Solution:   Add v:beval_winid.

src/eval.c
src/gui_beval.c
src/version.c
src/vim.h

index 9adaa419f33108561ce28ff30fc190ac8d5a307a..2ca6611843a2185681690e48fd195722fc99a700 100644 (file)
@@ -349,6 +349,7 @@ static struct vimvar
     {VV_NAME("fcs_choice",      VAR_STRING), 0},
     {VV_NAME("beval_bufnr",     VAR_NUMBER), VV_RO},
     {VV_NAME("beval_winnr",     VAR_NUMBER), VV_RO},
+    {VV_NAME("beval_winid",     VAR_NUMBER), VV_RO},
     {VV_NAME("beval_lnum",      VAR_NUMBER), VV_RO},
     {VV_NAME("beval_col",       VAR_NUMBER), VV_RO},
     {VV_NAME("beval_text",      VAR_STRING), VV_RO},
index 9a945bc8ae0192b409e960a82f07628f36c6e1ff..4525dde7a0c391506eec327ecc18e6fb62a37219 100644 (file)
@@ -61,6 +61,7 @@ general_beval_cb(BalloonEval *beval, int state UNUSED)
 
            set_vim_var_nr(VV_BEVAL_BUFNR, (long)wp->w_buffer->b_fnum);
            set_vim_var_nr(VV_BEVAL_WINNR, winnr);
+           set_vim_var_nr(VV_BEVAL_WINID, wp->w_id);
            set_vim_var_nr(VV_BEVAL_LNUM, (long)lnum);
            set_vim_var_nr(VV_BEVAL_COL, (long)(col + 1));
            set_vim_var_string(VV_BEVAL_TEXT, text, -1);
index a90b47e65eb85b7f676ce9826f0e3c53f262c257..5aa8a2afed2b7f239c5817c687eb0cde28ab398c 100644 (file)
@@ -753,6 +753,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1892,
 /**/
     1891,
 /**/
index 8ce11d684cda7f3ef2a258e3539f76fb490c0bc3..55289aaf6f4a2f922856f530e308d374ef148e4a 100644 (file)
--- a/src/vim.h
+++ b/src/vim.h
@@ -1877,35 +1877,36 @@ typedef int sock_T;
 #define VV_FCS_CHOICE  38
 #define VV_BEVAL_BUFNR 39
 #define VV_BEVAL_WINNR 40
-#define VV_BEVAL_LNUM  41
-#define VV_BEVAL_COL   42
-#define VV_BEVAL_TEXT  43
-#define VV_SCROLLSTART 44
-#define VV_SWAPNAME    45
-#define VV_SWAPCHOICE  46
-#define VV_SWAPCOMMAND 47
-#define VV_CHAR                48
-#define VV_MOUSE_WIN   49
-#define VV_MOUSE_LNUM   50
-#define VV_MOUSE_COL   51
-#define VV_OP          52
-#define VV_SEARCHFORWARD 53
-#define VV_HLSEARCH    54
-#define VV_OLDFILES    55
-#define VV_WINDOWID    56
-#define VV_PROGPATH    57
-#define VV_COMPLETED_ITEM 58
-#define VV_OPTION_NEW   59
-#define VV_OPTION_OLD   60
-#define VV_OPTION_TYPE  61
-#define VV_ERRORS      62
-#define VV_FALSE       63
-#define VV_TRUE                64
-#define VV_NULL                65
-#define VV_NONE                66
-#define VV_VIM_DID_ENTER 67
-#define VV_TESTING     68
-#define VV_LEN         69      /* number of v: vars */
+#define VV_BEVAL_WINID 41
+#define VV_BEVAL_LNUM  42
+#define VV_BEVAL_COL   43
+#define VV_BEVAL_TEXT  44
+#define VV_SCROLLSTART 45
+#define VV_SWAPNAME    46
+#define VV_SWAPCHOICE  47
+#define VV_SWAPCOMMAND 48
+#define VV_CHAR                49
+#define VV_MOUSE_WIN   50
+#define VV_MOUSE_LNUM   51
+#define VV_MOUSE_COL   52
+#define VV_OP          53
+#define VV_SEARCHFORWARD 54
+#define VV_HLSEARCH    55
+#define VV_OLDFILES    56
+#define VV_WINDOWID    57
+#define VV_PROGPATH    58
+#define VV_COMPLETED_ITEM 59
+#define VV_OPTION_NEW   60
+#define VV_OPTION_OLD   61
+#define VV_OPTION_TYPE  62
+#define VV_ERRORS      63
+#define VV_FALSE       64
+#define VV_TRUE                65
+#define VV_NULL                66
+#define VV_NONE                67
+#define VV_VIM_DID_ENTER 68
+#define VV_TESTING     69
+#define VV_LEN         70      /* number of v: vars */
 
 /* used for v_number in VAR_SPECIAL */
 #define VVAL_FALSE     0L