diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-04-01 15:33:59 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-04-01 15:33:59 +0200 |
commit | 96bcc5e6cd90c914c55e1606067fbdee4a981891 (patch) | |
tree | 0629795b141dc8e5fd4e856cadd842357ebd744d /src/netbeans.c | |
parent | 42431a7aa060566f230e20dc43effa0fee16bba4 (diff) | |
download | vim-git-96bcc5e6cd90c914c55e1606067fbdee4a981891.tar.gz |
updated for version 7.3.149v7.3.149
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
Diffstat (limited to 'src/netbeans.c')
-rw-r--r-- | src/netbeans.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/netbeans.c b/src/netbeans.c index 01cb5fbe2..c3bfa50ac 100644 --- a/src/netbeans.c +++ b/src/netbeans.c @@ -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) |