Skip to content

Commit 7ed466a

Browse files
committed
Update by original
1 parent 411b7c1 commit 7ed466a

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

doc/quickfix.jax

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Sep 09
1+
*quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Sep 10
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -1227,6 +1227,8 @@ Vimの古いバージョンをサポートするために、それらのプラ
12271227

12281228
コンパイラプラグインを書くためには|write-compiler-plugin|を参照せよ。
12291229

1230+
コンパイラプラグインの効果を元に戻すには、|compiler-make| プラグインを使用す
1231+
る。
12301232

12311233
DOTNET *compiler-dotnet*
12321234

@@ -1242,7 +1244,6 @@ g:dotnet_errors_only に |v:true| を設定することで、出力がエラー
12421244
let dotnet_show_project_file = v:false
12431245
compiler dotnet
12441246
<
1245-
12461247
GCC *quickfix-gcc* *compiler-gcc*
12471248

12481249
GCC用に設定できる変数は1つある:
@@ -1253,14 +1254,19 @@ g:compiler_gcc_ignore_unmatched_lines
12531254
のせいで誤検出 (false positive) が発生してしま
12541255
うときに有用である。
12551256

1256-
12571257
JAVAC *compiler-javac*
12581258

12591259
よく使用されるコンパイラオプションは、g:javac_makeprg_params 変数を設定するこ
12601260
とで 'makeprg' に追加できる。例: >
12611261
12621262
let g:javac_makeprg_params = "-Xlint:all -encoding utf-8"
12631263
<
1264+
GNU MAKE *compiler-make*
1265+
1266+
デフォルトの make プログラムは "make" であるため、make のコンパイラプラグイ
1267+
ン :compiler make は、'makeprg' および 'errorformat' オプションをデフォルト値
1268+
にリセットし、以前のコンパイラプラグインによって設定された可能性のある変数をす
1269+
べて解除する。
12641270

12651271
MANX AZTEC C *quickfix-manx* *compiler-manx*
12661272

en/quickfix.txt

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim version 9.1. Last change: 2024 Sep 09
1+
*quickfix.txt* For Vim version 9.1. Last change: 2024 Sep 10
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1276,6 +1276,7 @@ not "b:current_compiler". What the command actually does is the following:
12761276

12771277
For writing a compiler plugin, see |write-compiler-plugin|.
12781278

1279+
Use the |compiler-make| plugin to undo the effect of a compiler plugin.
12791280

12801281
DOTNET *compiler-dotnet*
12811282

@@ -1291,7 +1292,6 @@ Example: limit output to only display errors, and suppress the project name: >
12911292
let dotnet_show_project_file = v:false
12921293
compiler dotnet
12931294
<
1294-
12951295
GCC *quickfix-gcc* *compiler-gcc*
12961296

12971297
There's one variable you can set for the GCC compiler:
@@ -1302,14 +1302,19 @@ g:compiler_gcc_ignore_unmatched_lines
13021302
commands run from make are generating false
13031303
positives.
13041304

1305-
13061305
JAVAC *compiler-javac*
13071306

13081307
Commonly used compiler options can be added to 'makeprg' by setting the
13091308
g:javac_makeprg_params variable. For example: >
13101309
13111310
let g:javac_makeprg_params = "-Xlint:all -encoding utf-8"
13121311
<
1312+
GNU MAKE *compiler-make*
1313+
1314+
Since the default make program is "make", the compiler plugin for make,
1315+
:compiler make, will reset the 'makeprg' and 'errorformat' option to
1316+
the default values and unlet any variables that may have been set by a
1317+
previous compiler plugin.
13131318

13141319
MANX AZTEC C *quickfix-manx* *compiler-manx*
13151320

0 commit comments

Comments
 (0)