Skip to content

Commit 0c20694

Browse files
committed
Update quickfix.{txt,jax}
1 parent b89fbce commit 0c20694

File tree

2 files changed

+56
-2
lines changed

2 files changed

+56
-2
lines changed

doc/quickfix.jax

Lines changed: 28 additions & 1 deletion
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 07
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -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: 28 additions & 1 deletion
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 07
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -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)