From b5eefc44517f2937d458cde6da0d09e5aed0e4bd Mon Sep 17 00:00:00 2001 From: h-east Date: Wed, 13 Nov 2024 16:49:38 +0900 Subject: [PATCH 1/2] Update quickfix.{txt,jax} --- doc/quickfix.jax | 5 ++--- en/quickfix.txt | 9 ++++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/doc/quickfix.jax b/doc/quickfix.jax index 0b959461e..2283bf18c 100644 --- a/doc/quickfix.jax +++ b/doc/quickfix.jax @@ -1,4 +1,4 @@ -*quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Nov 10 +*quickfix.txt* For Vim バージョン 9.1. Last change: 2024 Nov 12 VIMリファレンスマニュアル by Bram Moolenaar @@ -1380,8 +1380,7 @@ PYLINT LINTER *compiler-pylint* let b:pylint_makeprg_params = "--max-line-length"..&textwidth -グローバルのデフォルトは "--jobs=n" で、n は実行可能な場合、getconf によって報 -告されるコアの数である。それ以外の場合は、デフォルトで "" になる。 +グローバルデフォルトは "--jobs=0" で、(ほぼ) すべてのコアを使用する。 PYUNIT COMPILER *compiler-pyunit* diff --git a/en/quickfix.txt b/en/quickfix.txt index 48f192a7b..671630d66 100644 --- a/en/quickfix.txt +++ b/en/quickfix.txt @@ -1,4 +1,4 @@ -*quickfix.txt* For Vim version 9.1. Last change: 2024 Nov 10 +*quickfix.txt* For Vim version 9.1. Last change: 2024 Nov 12 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1419,7 +1419,7 @@ RUFF LINTER *compiler-ruff* Commonly used compiler options can be added to 'makeprg' by setting the b/g:ruff_makeprg_params variable. For example: > - let b:ruff_makeprg_params = "--max-line-length"..&textwidth + let b:ruff_makeprg_params = "--max-line-length "..&textwidth The global default is "--preview". @@ -1428,10 +1428,9 @@ PYLINT LINTER *compiler-pylint* Commonly used compiler options can be added to 'makeprg' by setting the b/g:pylint_makeprg_params variable. For example: > - let b:pylint_makeprg_params = "--max-line-length"..&textwidth + let b:pylint_makeprg_params = "--max-line-length "..&textwidth -The global default is "--jobs=n" where n is the number of cores as reported -by getconf, if executable. Otherwise it defaults to "". +The global default is "--jobs=0" to use (almost) all cores. PYUNIT COMPILER *compiler-pyunit* From e14d35a3d62cb41ce38350ea55662e172c72a580 Mon Sep 17 00:00:00 2001 From: h-east Date: Wed, 13 Nov 2024 21:38:43 +0900 Subject: [PATCH 2/2] Fix by review --- doc/quickfix.jax | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/quickfix.jax b/doc/quickfix.jax index 2283bf18c..b8067253c 100644 --- a/doc/quickfix.jax +++ b/doc/quickfix.jax @@ -1369,7 +1369,7 @@ RUFF LINTER *compiler-ruff* よく使用されるコンパイラオプションは、b/g:ruff_makeprg_params 変数を設定するこ とで 'makeprg' に追加できる。例: > - let b:ruff_makeprg_params = "--max-line-length"..&textwidth + let b:ruff_makeprg_params = "--max-line-length "..&textwidth グローバルのデフォルトは "--preview" である。 @@ -1378,7 +1378,7 @@ PYLINT LINTER *compiler-pylint* よく使用されるコンパイラオプションは、b/g:pylint_makeprg_params 変数を設定する ことで 'makeprg' に追加できる。例: > - let b:pylint_makeprg_params = "--max-line-length"..&textwidth + let b:pylint_makeprg_params = "--max-line-length "..&textwidth グローバルデフォルトは "--jobs=0" で、(ほぼ) すべてのコアを使用する。