File tree 2 files changed +8
-10
lines changed
2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 1
- *quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Nov 10
1
+ *quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Nov 12
2
2
3
3
4
4
VIMリファレンスマニュアル by Bram Moolenaar
@@ -1369,7 +1369,7 @@ RUFF LINTER *compiler-ruff*
1369
1369
よく使用されるコンパイラオプションは、b/g:ruff_makeprg_params 変数を設定するこ
1370
1370
とで 'makeprg' に追加できる。例: >
1371
1371
1372
- let b:ruff_makeprg_params = "--max-line-length"..&textwidth
1372
+ let b:ruff_makeprg_params = "--max-line-length "..&textwidth
1373
1373
1374
1374
グローバルのデフォルトは "--preview" である。
1375
1375
@@ -1378,10 +1378,9 @@ PYLINT LINTER *compiler-pylint*
1378
1378
よく使用されるコンパイラオプションは、b/g:pylint_makeprg_params 変数を設定する
1379
1379
ことで 'makeprg' に追加できる。例: >
1380
1380
1381
- let b:pylint_makeprg_params = "--max-line-length"..&textwidth
1381
+ let b:pylint_makeprg_params = "--max-line-length "..&textwidth
1382
1382
1383
- グローバルのデフォルトは "--jobs=n" で、n は実行可能な場合、getconf によって報
1384
- 告されるコアの数である。それ以外の場合は、デフォルトで "" になる。
1383
+ グローバルデフォルトは "--jobs=0" で、(ほぼ) すべてのコアを使用する。
1385
1384
1386
1385
PYUNIT COMPILER *compiler-pyunit*
1387
1386
Original file line number Diff line number Diff line change 1
- *quickfix.txt* For Vim version 9.1. Last change: 2024 Nov 10
1
+ *quickfix.txt* For Vim version 9.1. Last change: 2024 Nov 12
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1419,7 +1419,7 @@ RUFF LINTER *compiler-ruff*
1419
1419
Commonly used compiler options can be added to 'makeprg' by setting the
1420
1420
b/g:ruff_makeprg_params variable. For example: >
1421
1421
1422
- let b:ruff_makeprg_params = "--max-line-length"..&textwidth
1422
+ let b:ruff_makeprg_params = "--max-line-length "..&textwidth
1423
1423
1424
1424
The global default is "--preview".
1425
1425
@@ -1428,10 +1428,9 @@ PYLINT LINTER *compiler-pylint*
1428
1428
Commonly used compiler options can be added to 'makeprg' by setting the
1429
1429
b/g:pylint_makeprg_params variable. For example: >
1430
1430
1431
- let b:pylint_makeprg_params = "--max-line-length"..&textwidth
1431
+ let b:pylint_makeprg_params = "--max-line-length "..&textwidth
1432
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 "".
1433
+ The global default is "--jobs=0" to use (almost) all cores.
1435
1434
1436
1435
PYUNIT COMPILER *compiler-pyunit*
1437
1436
You can’t perform that action at this time.
0 commit comments