• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisionbf63a31b77017d78197bc0155c0ec59e31559df3 (tree)
Zeit2007-03-08 19:01:03
Autorvimboss
Commitervimboss

Log Message

updated for version 7.0-210

Ändern Zusammenfassung

Diff

diff -r 1d12208efb37 -r bf63a31b7701 runtime/doc/quickfix.txt
--- a/runtime/doc/quickfix.txt Thu Mar 08 09:20:28 2007 +0000
+++ b/runtime/doc/quickfix.txt Thu Mar 08 10:01:03 2007 +0000
@@ -1,4 +1,4 @@
1-*quickfix.txt* For Vim version 7.0. Last change: 2006 Apr 30
1+*quickfix.txt* For Vim version 7.0. Last change: 2006 Jul 18
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -178,15 +178,16 @@
178178 current window is used instead of the quickfix list.
179179
180180 *:cb* *:cbuffer* *E681*
181-:cb[uffer] [bufnr] Read the error list from the current buffer.
181+:cb[uffer][!] [bufnr] Read the error list from the current buffer.
182182 When [bufnr] is given it must be the number of a
183183 loaded buffer. That buffer will then be used instead
184184 of the current buffer.
185185 A range can be specified for the lines to be used.
186186 Otherwise all lines in the buffer are used.
187+ See |:cc| for [!].
187188
188189 *:lb* *:lbuffer*
189-:lb[uffer] [bufnr] Same as ":cbuffer", except the location list for the
190+:lb[uffer][!] [bufnr] Same as ":cbuffer", except the location list for the
190191 current window is used instead of the quickfix list.
191192
192193 *:cgetb* *:cgetbuffer*
diff -r 1d12208efb37 -r bf63a31b7701 src/ex_cmds.h
--- a/src/ex_cmds.h Thu Mar 08 09:20:28 2007 +0000
+++ b/src/ex_cmds.h Thu Mar 08 10:01:03 2007 +0000
@@ -198,7 +198,7 @@
198198 EX(CMD_catch, "catch", ex_catch,
199199 EXTRA|SBOXOK|CMDWIN),
200200 EX(CMD_cbuffer, "cbuffer", ex_cbuffer,
201- RANGE|NOTADR|WORD1|TRLBAR),
201+ BANG|RANGE|NOTADR|WORD1|TRLBAR),
202202 EX(CMD_cc, "cc", ex_cc,
203203 RANGE|NOTADR|COUNT|TRLBAR|BANG),
204204 EX(CMD_cclose, "cclose", ex_cclose,
@@ -498,7 +498,7 @@
498498 EX(CMD_later, "later", ex_later,
499499 TRLBAR|EXTRA|NOSPC|CMDWIN),
500500 EX(CMD_lbuffer, "lbuffer", ex_cbuffer,
501- RANGE|NOTADR|WORD1|TRLBAR),
501+ BANG|RANGE|NOTADR|WORD1|TRLBAR),
502502 EX(CMD_lcd, "lcd", ex_cd,
503503 BANG|FILE1|TRLBAR|CMDWIN),
504504 EX(CMD_lchdir, "lchdir", ex_cd,
diff -r 1d12208efb37 -r bf63a31b7701 src/version.c
--- a/src/version.c Thu Mar 08 09:20:28 2007 +0000
+++ b/src/version.c Thu Mar 08 10:01:03 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 210,
671+/**/
670672 209,
671673 /**/
672674 208,
Show on old repository browser