]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.149 v7.3.149
authorBram Moolenaar <Bram@vim.org>
Fri, 1 Apr 2011 13:33:59 +0000 (15:33 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 1 Apr 2011 13:33:59 +0000 (15:33 +0200)
Problem:    The cursor disappears after the processing of the 'setDot'
            netbeans command when vim runs in a terminal.
Solution:   Show the cursor after a screen update. (Xavier de Gaye, 2011

src/netbeans.c
src/version.c

index 01cb5fbe29ae0d42108e2c572891ca9055bf91c3..c3bfa50ac3245497420affdc8a7e2a95fc307451 100644 (file)
@@ -191,6 +191,7 @@ netbeans_close(void)
     changed_window_setting();
     update_screen(CLEAR);
     setcursor();
+    cursor_on();
     out_flush();
 #ifdef FEAT_GUI
     if (gui.in_use)
@@ -2248,6 +2249,7 @@ nb_do_cmd(
            update_topline();           /* scroll to show the line */
            update_screen(VALID);
            setcursor();
+           cursor_on();
            out_flush();
 #ifdef FEAT_GUI
            if (gui.in_use)
@@ -2642,6 +2644,7 @@ nb_do_cmd(
     {
        update_screen(NOT_VALID);
        setcursor();
+       cursor_on();
        out_flush();
 #ifdef FEAT_GUI
        if (gui.in_use)
@@ -3008,6 +3011,7 @@ netbeans_open(char *params, int doabort)
     changed_window_setting();
     update_screen(CLEAR);
     setcursor();
+    cursor_on();
     out_flush();
 #ifdef FEAT_GUI
     if (gui.in_use)
index 3b8bd83c90346b5e8f51e5bec6cc7c788717ff03..d96aa0270b7723d0ddd90bbe3975a868f5ddcf06 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    149,
 /**/
     148,
 /**/