Skip to content

Commit 8f7dda4

Browse files
authored
Merge pull request #1814 from h-east/update-quickfix
Update quickfix.{txt,jax}
2 parents 94e7e67 + e14d35a commit 8f7dda4

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

doc/quickfix.jax

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Nov 10
1+
*quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Nov 12
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -1369,7 +1369,7 @@ RUFF LINTER *compiler-ruff*
13691369
よく使用されるコンパイラオプションは、b/g:ruff_makeprg_params 変数を設定するこ
13701370
とで 'makeprg' に追加できる。例: >
13711371
1372-
let b:ruff_makeprg_params = "--max-line-length"..&textwidth
1372+
let b:ruff_makeprg_params = "--max-line-length "..&textwidth
13731373
13741374
グローバルのデフォルトは "--preview" である。
13751375

@@ -1378,10 +1378,9 @@ PYLINT LINTER *compiler-pylint*
13781378
よく使用されるコンパイラオプションは、b/g:pylint_makeprg_params 変数を設定する
13791379
ことで 'makeprg' に追加できる。例: >
13801380
1381-
let b:pylint_makeprg_params = "--max-line-length"..&textwidth
1381+
let b:pylint_makeprg_params = "--max-line-length "..&textwidth
13821382
1383-
グローバルのデフォルトは "--jobs=n" で、n は実行可能な場合、getconf によって報
1384-
告されるコアの数である。それ以外の場合は、デフォルトで "" になる。
1383+
グローバルデフォルトは "--jobs=0" で、(ほぼ) すべてのコアを使用する。
13851384

13861385
PYUNIT COMPILER *compiler-pyunit*
13871386

en/quickfix.txt

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1419,7 +1419,7 @@ RUFF LINTER *compiler-ruff*
14191419
Commonly used compiler options can be added to 'makeprg' by setting the
14201420
b/g:ruff_makeprg_params variable. For example: >
14211421
1422-
let b:ruff_makeprg_params = "--max-line-length"..&textwidth
1422+
let b:ruff_makeprg_params = "--max-line-length "..&textwidth
14231423
14241424
The global default is "--preview".
14251425

@@ -1428,10 +1428,9 @@ PYLINT LINTER *compiler-pylint*
14281428
Commonly used compiler options can be added to 'makeprg' by setting the
14291429
b/g:pylint_makeprg_params variable. For example: >
14301430
1431-
let b:pylint_makeprg_params = "--max-line-length"..&textwidth
1431+
let b:pylint_makeprg_params = "--max-line-length "..&textwidth
14321432
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.
14351434

14361435
PYUNIT COMPILER *compiler-pyunit*
14371436

0 commit comments

Comments
 (0)