comparison runtime/doc/quickfix.txt @ 9555:9560a5b782ee

commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 17 13:35:14 2016 +0200 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Sun, 17 Jul 2016 13:45:05 +0200
parents 374afcf9d11d
children 9f48eab77d62
comparison
equal deleted inserted replaced
9554:d32c969007f9 9555:9560a5b782ee
1 *quickfix.txt* For Vim version 7.4. Last change: 2016 Jul 07 1 *quickfix.txt* For Vim version 7.4. Last change: 2016 Jul 17
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
528 :col[der] [count] Go to older error list. When [count] is given, do 528 :col[der] [count] Go to older error list. When [count] is given, do
529 this [count] times. When already at the oldest error 529 this [count] times. When already at the oldest error
530 list, an error message is given. 530 list, an error message is given.
531 531
532 *:lolder* *:lol* 532 *:lolder* *:lol*
533 :lol[der] [count] Same as ":colder", except use the location list for 533 :lol[der] [count] Same as `:colder`, except use the location list for
534 the current window instead of the quickfix list. 534 the current window instead of the quickfix list.
535 535
536 *:cnewer* *:cnew* *E381* 536 *:cnewer* *:cnew* *E381*
537 :cnew[er] [count] Go to newer error list. When [count] is given, do 537 :cnew[er] [count] Go to newer error list. When [count] is given, do
538 this [count] times. When already at the newest error 538 this [count] times. When already at the newest error
539 list, an error message is given. 539 list, an error message is given.
540 540
541 *:lnewer* *:lnew* 541 *:lnewer* *:lnew*
542 :lnew[er] [count] Same as ":cnewer", except use the location list for 542 :lnew[er] [count] Same as `:cnewer`, except use the location list for
543 the current window instead of the quickfix list. 543 the current window instead of the quickfix list.
544
545 *:chistory* *:chi*
546 :chi[story] Show the list of error lists. The current list is
547 marked with ">". The output looks like:
548 error list 1 of 3; 43 errors ~
549 > error list 2 of 3; 0 errors ~
550 error list 3 of 3; 15 errors ~
551
552 *:lhistory* *:lhi*
553 :lhi[story] Show the list of location lists, otherwise like
554 `:chistory`.
544 555
545 When adding a new error list, it becomes the current list. 556 When adding a new error list, it becomes the current list.
546 557
547 When ":colder" has been used and ":make" or ":grep" is used to add a new error 558 When ":colder" has been used and ":make" or ":grep" is used to add a new error
548 list, one newer list is overwritten. This is especially useful if you are 559 list, one newer list is overwritten. This is especially useful if you are