comparison runtime/doc/quickfix.txt @ 16553:0e473e9e70c2 v8.1.1280

patch 8.1.1280: remarks about functionality not in Vi clutters the help commit https://github.com/vim/vim/commit/25c9c680ec4dfbb51f4ef21c3460a48d3c67ffc8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 5 18:13:34 2019 +0200 patch 8.1.1280: remarks about functionality not in Vi clutters the help Problem: Remarks about functionality not in Vi clutters the help. Solution: Move all info about what is new in Vim or already existed in Vi to vi_diff.txt. Remove {not in Vi} remarks. (closes #4268) Add "noet" to the help files modeline. Also include many other help file improvements.
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 May 2019 18:15:06 +0200
parents 1d2b3bb35414
children 1302bc0b80db
comparison
equal deleted inserted replaced
16552:deb3d4f5be8b 16553:0e473e9e70c2
1 *quickfix.txt* For Vim version 8.1. Last change: 2019 Jan 13 1 *quickfix.txt* For Vim version 8.1. Last change: 2019 May 05
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
13 5. Using :grep |grep| 13 5. Using :grep |grep|
14 6. Selecting a compiler |compiler-select| 14 6. Selecting a compiler |compiler-select|
15 7. The error format |error-file-format| 15 7. The error format |error-file-format|
16 8. The directory stack |quickfix-directory-stack| 16 8. The directory stack |quickfix-directory-stack|
17 9. Specific error file formats |errorformats| 17 9. Specific error file formats |errorformats|
18
19 {Vi does not have any of these commands}
20 18
21 The quickfix commands are not available when the |+quickfix| feature was 19 The quickfix commands are not available when the |+quickfix| feature was
22 disabled at compile time. 20 disabled at compile time.
23 21
24 ============================================================================= 22 =============================================================================
500 498
501 Note: While this command is executing, the Syntax 499 Note: While this command is executing, the Syntax
502 autocommand event is disabled by adding it to 500 autocommand event is disabled by adding it to
503 'eventignore'. This considerably speeds up editing 501 'eventignore'. This considerably speeds up editing
504 each buffer. 502 each buffer.
505 {not in Vi}
506 Also see |:bufdo|, |:tabdo|, |:argdo|, |:windo|, 503 Also see |:bufdo|, |:tabdo|, |:argdo|, |:windo|,
507 |:ldo|, |:cfdo| and |:lfdo|. 504 |:ldo|, |:cfdo| and |:lfdo|.
508 505
509 *:cfdo* 506 *:cfdo*
510 :cfdo[!] {cmd} Execute {cmd} in each file in the quickfix list. 507 :cfdo[!] {cmd} Execute {cmd} in each file in the quickfix list.
513 :{cmd} 510 :{cmd}
514 :cnfile 511 :cnfile
515 :{cmd} 512 :{cmd}
516 etc. 513 etc.
517 < Otherwise it works the same as `:cdo`. 514 < Otherwise it works the same as `:cdo`.
518 {not in Vi}
519 515
520 *:ldo* 516 *:ldo*
521 :ld[o][!] {cmd} Execute {cmd} in each valid entry in the location list 517 :ld[o][!] {cmd} Execute {cmd} in each valid entry in the location list
522 for the current window. 518 for the current window.
523 It works like doing this: > 519 It works like doing this: >
526 :lnext 522 :lnext
527 :{cmd} 523 :{cmd}
528 etc. 524 etc.
529 < Only valid entries in the location list are used. 525 < Only valid entries in the location list are used.
530 Otherwise it works the same as `:cdo`. 526 Otherwise it works the same as `:cdo`.
531 {not in Vi}
532 527
533 *:lfdo* 528 *:lfdo*
534 :lfdo[!] {cmd} Execute {cmd} in each file in the location list for 529 :lfdo[!] {cmd} Execute {cmd} in each file in the location list for
535 the current window. 530 the current window.
536 It works like doing this: > 531 It works like doing this: >
538 :{cmd} 533 :{cmd}
539 :lnfile 534 :lnfile
540 :{cmd} 535 :{cmd}
541 etc. 536 etc.
542 < Otherwise it works the same as `:ldo`. 537 < Otherwise it works the same as `:ldo`.
543 {not in Vi}
544 538
545 ============================================================================= 539 =============================================================================
546 2. The error window *quickfix-window* 540 2. The error window *quickfix-window*
547 541
548 *:cope* *:copen* *w:quickfix_title* 542 *:cope* *:copen* *w:quickfix_title*