Skip to content

Commit 60c8358

Browse files
authored
Merge pull request #632 from kazukazuinaina/update_quickfix_jax
update quickfix.{txt,jax}
2 parents 46a40dd + 54e301c commit 60c8358

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

doc/quickfix.jax

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim バージョン 8.1. Last change: 2019 Jun 02
1+
*quickfix.txt* For Vim バージョン 8.1. Last change: 2019 Jul 15
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -603,9 +603,10 @@ quickfixウィンドウには各行に1個ずつエラーが表示される。
603603
CTRL-W <Enter>を使うと、新しいウィンドウを開いてそこでエラーにジャンプできる。
604604

605605
quickfixウィンドウが一杯になったとき、2つの自動コマンドイベントが発生する。第
606-
一は 'filetype' オプションが "qf" にセットされ、FileTypeイベントが発生する。そ
607-
れからBufReadPostイベントが発生する。そのときのバッファ名は "quickfix" となる。
608-
これを使ってエラーリストに対して操作を行うことができる。例: >
606+
一は 'filetype' オプションが "qf" にセットされ、FileTypeイベントが発生する
607+
(|qf.vim| も参照)。それからBufReadPostイベントが発生する。そのときのバッファ名
608+
は "quickfix" となる。これを使ってエラーリストに対して操作を行うことができる。
609+
例: >
609610
au BufReadPost quickfix setlocal modifiable
610611
\ | silent exe 'g/^/s//\=line(".")." "/'
611612
\ | setlocal nomodifiable

en/quickfix.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim version 8.1. Last change: 2019 Jun 02
1+
*quickfix.txt* For Vim version 8.1. Last change: 2019 Jul 15
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -650,9 +650,9 @@ You can use CTRL-W <Enter> to open a new window and jump to the error there.
650650

651651
When the quickfix window has been filled, two autocommand events are
652652
triggered. First the 'filetype' option is set to "qf", which triggers the
653-
FileType event. Then the BufReadPost event is triggered, using "quickfix" for
654-
the buffer name. This can be used to perform some action on the listed
655-
errors. Example: >
653+
FileType event (also see |qf.vim|). Then the BufReadPost event is triggered,
654+
using "quickfix" for the buffer name. This can be used to perform some action
655+
on the listed errors. Example: >
656656
au BufReadPost quickfix setlocal modifiable
657657
\ | silent exe 'g/^/s//\=line(".")." "/'
658658
\ | setlocal nomodifiable

0 commit comments

Comments
 (0)