Skip to content

Commit be6cd8e

Browse files
authored
Merge pull request #1791 from h-east/update-quickfix
Update quickfix.{txt,jax}
2 parents b198b62 + 85aac0d commit be6cd8e

File tree

2 files changed

+58
-4
lines changed

2 files changed

+58
-4
lines changed

doc/quickfix.jax

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Oct 05
1+
*quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Nov 10
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -336,7 +336,7 @@ locationリストが |autocommand| に変更される場合、それは中断さ
336336
例: >
337337
:g/mypattern/caddexpr expand("%") .. ":" .. line(".") .. ":" .. getline(".")
338338
<
339-
*:lad* *:addd* *:laddexpr*
339+
*:lad* *:ladd* *:laddexpr*
340340
:lad[dexpr] {expr} ":caddexpr" と同様だが、quickfixリストでなく、カレント
341341
ウィンドウのlocationリストが使われる。
342342

@@ -1355,6 +1355,33 @@ Perl コンパイラプラグインはコンパイルはしないが、Perl 内
13551355
を代入する。例: >
13561356
let g:perl_compiler_force_warnings = 0
13571357
1358+
MYPY TYPE CHECKER *compiler-mypy*
1359+
1360+
よく使用されるコンパイラオプションは、b/g:mypy_makeprg_params 変数を設定するこ
1361+
とで 'makeprg' に追加できる。例: >
1362+
1363+
let b:mypy_makeprg_params = "--warn-unused-ignores"
1364+
1365+
グローバルのデフォルトは "--strict --ignore-missing-imports" である。
1366+
1367+
RUFF LINTER *compiler-ruff*
1368+
1369+
よく使用されるコンパイラオプションは、b/g:ruff_makeprg_params 変数を設定するこ
1370+
とで 'makeprg' に追加できる。例: >
1371+
1372+
let b:ruff_makeprg_params = "--max-line-length"..&textwidth
1373+
1374+
グローバルのデフォルトは "--preview" である。
1375+
1376+
PYLINT LINTER *compiler-pylint*
1377+
1378+
よく使用されるコンパイラオプションは、b/g:pylint_makeprg_params 変数を設定する
1379+
ことで 'makeprg' に追加できる。例: >
1380+
1381+
let b:pylint_makeprg_params = "--max-line-length"..&textwidth
1382+
1383+
グローバルのデフォルトは "--jobs=n" で、n は実行可能な場合、getconf によって報
1384+
告されるコアの数である。それ以外の場合は、デフォルトで "" になる。
13581385

13591386
PYUNIT COMPILER *compiler-pyunit*
13601387

en/quickfix.txt

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim version 9.1. Last change: 2024 Oct 05
1+
*quickfix.txt* For Vim version 9.1. Last change: 2024 Nov 10
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -361,7 +361,7 @@ processing a quickfix or location list command, it will be aborted.
361361
Example: >
362362
:g/mypattern/caddexpr expand("%") .. ":" .. line(".") .. ":" .. getline(".")
363363
<
364-
*:lad* *:addd* *:laddexpr*
364+
*:lad* *:ladd* *:laddexpr*
365365
:lad[dexpr] {expr} Same as ":caddexpr", except the location list for the
366366
current window is used instead of the quickfix list.
367367

@@ -1405,6 +1405,33 @@ being checked. To disable this set g:perl_compiler_force_warnings to a zero
14051405
value. For example: >
14061406
let g:perl_compiler_force_warnings = 0
14071407
1408+
MYPY TYPE CHECKER *compiler-mypy*
1409+
1410+
Commonly used compiler options can be added to 'makeprg' by setting the
1411+
b/g:mypy_makeprg_params variable. For example: >
1412+
1413+
let b:mypy_makeprg_params = "--warn-unused-ignores"
1414+
1415+
The global default is "--strict --ignore-missing-imports".
1416+
1417+
RUFF LINTER *compiler-ruff*
1418+
1419+
Commonly used compiler options can be added to 'makeprg' by setting the
1420+
b/g:ruff_makeprg_params variable. For example: >
1421+
1422+
let b:ruff_makeprg_params = "--max-line-length"..&textwidth
1423+
1424+
The global default is "--preview".
1425+
1426+
PYLINT LINTER *compiler-pylint*
1427+
1428+
Commonly used compiler options can be added to 'makeprg' by setting the
1429+
b/g:pylint_makeprg_params variable. For example: >
1430+
1431+
let b:pylint_makeprg_params = "--max-line-length"..&textwidth
1432+
1433+
The global default is "--jobs=n" where n is the number of cores as reported
1434+
by getconf, if executable. Otherwise it defaults to "".
14081435

14091436
PYUNIT COMPILER *compiler-pyunit*
14101437

0 commit comments

Comments
 (0)