]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.149
- new
[packages/vim.git] / 7.3.149
CommitLineData
bab0032d
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.149
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.149
11Problem: The cursor disappears after the processing of the 'setDot'
12 netbeans command when vim runs in a terminal.
13Solution: Show the cursor after a screen update. (Xavier de Gaye, 2011
14Files: src/netbeans.c
15
16
17*** ../vim-7.3.148/src/netbeans.c 2011-01-04 18:11:39.000000000 +0100
18--- src/netbeans.c 2011-04-01 15:33:49.000000000 +0200
19***************
20*** 191,196 ****
21--- 191,197 ----
22 changed_window_setting();
23 update_screen(CLEAR);
24 setcursor();
25+ cursor_on();
26 out_flush();
27 #ifdef FEAT_GUI
28 if (gui.in_use)
29***************
30*** 2248,2253 ****
31--- 2249,2255 ----
32 update_topline(); /* scroll to show the line */
33 update_screen(VALID);
34 setcursor();
35+ cursor_on();
36 out_flush();
37 #ifdef FEAT_GUI
38 if (gui.in_use)
39***************
40*** 2642,2647 ****
41--- 2644,2650 ----
42 {
43 update_screen(NOT_VALID);
44 setcursor();
45+ cursor_on();
46 out_flush();
47 #ifdef FEAT_GUI
48 if (gui.in_use)
49***************
50*** 3008,3013 ****
51--- 3011,3017 ----
52 changed_window_setting();
53 update_screen(CLEAR);
54 setcursor();
55+ cursor_on();
56 out_flush();
57 #ifdef FEAT_GUI
58 if (gui.in_use)
59*** ../vim-7.3.148/src/version.c 2011-04-01 14:44:54.000000000 +0200
60--- src/version.c 2011-04-01 15:33:21.000000000 +0200
61***************
62*** 716,717 ****
63--- 716,719 ----
64 { /* Add new patch number below this line */
65+ /**/
66+ 149,
67 /**/
68
69--
70ARTHUR: You are indeed brave Sir knight, but the fight is mine.
71BLACK KNIGHT: Had enough?
72ARTHUR: You stupid bastard. You havn't got any arms left.
73 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
74
75 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
76/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
77\\\ an exciting new programming language -- http://www.Zimbu.org ///
78 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.035963 seconds and 4 git commands to generate.