]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.210
- updated to 0.7.3
[packages/vim.git] / 7.0.210
CommitLineData
9b1d76b7
AG
1To: vim-dev@vim.org
2Subject: patch 7.0.210
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.0.210
11Problem: ":cbuffer" and ":lbuffer" always fail when the buffer is modified.
12 (Gary Johnson)
13Solution: Support adding a !. (Yegappan Lakshmanan)
14Files: runtime/doc/quickfix.txt, src/ex_cmds.h
15
16
17*** ../vim-7.0.209/runtime/doc/quickfix.txt Sun May 7 17:15:46 2006
18--- runtime/doc/quickfix.txt Thu Mar 8 10:14:54 2007
19***************
20*** 1,4 ****
21! *quickfix.txt* For Vim version 7.0. Last change: 2006 Apr 30
22
23
24 VIM REFERENCE MANUAL by Bram Moolenaar
25--- 1,4 ----
26! *quickfix.txt* For Vim version 7.0. Last change: 2006 Jul 18
27
28
29 VIM REFERENCE MANUAL by Bram Moolenaar
30***************
31*** 178,192 ****
32 current window is used instead of the quickfix list.
33
34 *:cb* *:cbuffer* *E681*
35! :cb[uffer] [bufnr] Read the error list from the current buffer.
36 When [bufnr] is given it must be the number of a
37 loaded buffer. That buffer will then be used instead
38 of the current buffer.
39 A range can be specified for the lines to be used.
40 Otherwise all lines in the buffer are used.
41
42 *:lb* *:lbuffer*
43! :lb[uffer] [bufnr] Same as ":cbuffer", except the location list for the
44 current window is used instead of the quickfix list.
45
46 *:cgetb* *:cgetbuffer*
47--- 178,193 ----
48 current window is used instead of the quickfix list.
49
50 *:cb* *:cbuffer* *E681*
51! :cb[uffer][!] [bufnr] Read the error list from the current buffer.
52 When [bufnr] is given it must be the number of a
53 loaded buffer. That buffer will then be used instead
54 of the current buffer.
55 A range can be specified for the lines to be used.
56 Otherwise all lines in the buffer are used.
57+ See |:cc| for [!].
58
59 *:lb* *:lbuffer*
60! :lb[uffer][!] [bufnr] Same as ":cbuffer", except the location list for the
61 current window is used instead of the quickfix list.
62
63 *:cgetb* *:cgetbuffer*
64*** ../vim-7.0.209/src/ex_cmds.h Thu Jun 22 21:15:46 2006
65--- src/ex_cmds.h Wed Mar 7 21:53:27 2007
66***************
67*** 198,204 ****
68 EX(CMD_catch, "catch", ex_catch,
69 EXTRA|SBOXOK|CMDWIN),
70 EX(CMD_cbuffer, "cbuffer", ex_cbuffer,
71! RANGE|NOTADR|WORD1|TRLBAR),
72 EX(CMD_cc, "cc", ex_cc,
73 RANGE|NOTADR|COUNT|TRLBAR|BANG),
74 EX(CMD_cclose, "cclose", ex_cclose,
75--- 198,204 ----
76 EX(CMD_catch, "catch", ex_catch,
77 EXTRA|SBOXOK|CMDWIN),
78 EX(CMD_cbuffer, "cbuffer", ex_cbuffer,
79! BANG|RANGE|NOTADR|WORD1|TRLBAR),
80 EX(CMD_cc, "cc", ex_cc,
81 RANGE|NOTADR|COUNT|TRLBAR|BANG),
82 EX(CMD_cclose, "cclose", ex_cclose,
83***************
84*** 498,504 ****
85 EX(CMD_later, "later", ex_later,
86 TRLBAR|EXTRA|NOSPC|CMDWIN),
87 EX(CMD_lbuffer, "lbuffer", ex_cbuffer,
88! RANGE|NOTADR|WORD1|TRLBAR),
89 EX(CMD_lcd, "lcd", ex_cd,
90 BANG|FILE1|TRLBAR|CMDWIN),
91 EX(CMD_lchdir, "lchdir", ex_cd,
92--- 498,504 ----
93 EX(CMD_later, "later", ex_later,
94 TRLBAR|EXTRA|NOSPC|CMDWIN),
95 EX(CMD_lbuffer, "lbuffer", ex_cbuffer,
96! BANG|RANGE|NOTADR|WORD1|TRLBAR),
97 EX(CMD_lcd, "lcd", ex_cd,
98 BANG|FILE1|TRLBAR|CMDWIN),
99 EX(CMD_lchdir, "lchdir", ex_cd,
100*** ../vim-7.0.209/src/version.c Thu Mar 8 10:25:03 2007
101--- src/version.c Thu Mar 8 11:04:35 2007
102***************
103*** 668,669 ****
104--- 668,671 ----
105 { /* Add new patch number below this line */
106+ /**/
107+ 210,
108 /**/
109
110--
111press CTRL-ALT-DEL for more information
112
113 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
114/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
115\\\ download, build and distribute -- http://www.A-A-P.org ///
116 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.046383 seconds and 4 git commands to generate.