File tree Expand file tree Collapse file tree 2 files changed +56
-2
lines changed Expand file tree Collapse file tree 2 files changed +56
-2
lines changed Original file line number Diff line number Diff line change 1
- *quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Oct 05
1
+ *quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Nov 07
2
2
3
3
4
4
VIMリファレンスマニュアル by Bram Moolenaar
@@ -1355,6 +1355,33 @@ Perl コンパイラプラグインはコンパイルはしないが、Perl 内
1355
1355
を代入する。例: >
1356
1356
let g:perl_compiler_force_warnings = 0
1357
1357
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
+ 告されるコアの数である。それ以外の場合は、デフォルトで "" になる。
1358
1385
1359
1386
PYUNIT COMPILER *compiler-pyunit*
1360
1387
Original file line number Diff line number Diff line change 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
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1405,6 +1405,33 @@ being checked. To disable this set g:perl_compiler_force_warnings to a zero
1405
1405
value. For example: >
1406
1406
let g:perl_compiler_force_warnings = 0
1407
1407
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 "".
1408
1435
1409
1436
PYUNIT COMPILER *compiler-pyunit*
1410
1437
You can’t perform that action at this time.
0 commit comments