]> git.pld-linux.org Git - packages/vim.git/blob - 5.7.008
- offcial vim patches from ftp://ftp.home.vim.org/pub/vim/patches.
[packages/vim.git] / 5.7.008
1 To: vim-dev@vim.org
2 Subject: Patch 5.7.008
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 ------------
6
7 Patch 5.7.008
8 Problem:    In Ex mode, backspacing over the first TAB doesn't work properly.
9             (Wichert Akkerman)
10 Solution:   Switch the cursor on before printing the newline.
11 Files:      src/ex_getln.c
12
13
14 *** ../vim-5.7.7/src/ex_getln.c Mon Jun  5 12:35:31 2000
15 --- src/ex_getln.c      Sat Aug  5 16:48:39 2000
16 ***************
17 *** 1408,1413 ****
18 --- 1408,1417 ----
19       int                       vcol = 0;
20   #endif
21   
22 +     /* Switch cursor on now.  This avoids that it happens after the "\n", which
23 +      * confuses the system function that computes tabstops. */
24 +     cursor_on();
25
26       /* always start in column 0; write a newline if necessary */
27       compute_cmdrow();
28       if (msg_col)
29 *** ../vim-5.7.7/src/version.c  Sat Aug  5 16:22:38 2000
30 --- src/version.c       Sat Aug  5 16:52:29 2000
31 ***************
32 *** 439,440 ****
33 --- 439,442 ----
34   {   /* Add new patch number below this line */
35 + /**/
36 +     8,
37   /**/
38
39 -- 
40 hundred-and-one symptoms of being an internet addict:
41 128. You can access the Net -- via your portable and cellular phone.
42
43 ///  Bram Moolenaar     Bram@moolenaar.net     http://www.moolenaar.net  \\\
44 \\\  Vim: http://www.vim.org      ICCF Holland: http://iccf-holland.org  ///
This page took 0.02763 seconds and 3 git commands to generate.