Skip to content

Commit b5eefc4

Browse files
committed
Update quickfix.{txt,jax}
1 parent 8155951 commit b5eefc4

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

doc/quickfix.jax

Lines changed: 2 additions & 3 deletions
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
@@ -1380,8 +1380,7 @@ PYLINT LINTER *compiler-pylint*
13801380
13811381
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

Lines changed: 4 additions & 5 deletions
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)