Skip to content

Commit

Permalink
Merge pull request #1814 from h-east/update-quickfix
Browse files Browse the repository at this point in the history
Update quickfix.{txt,jax}
  • Loading branch information
h-east authored Nov 16, 2024
2 parents 94e7e67 + e14d35a commit 8f7dda4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
9 changes: 4 additions & 5 deletions doc/quickfix.jax
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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" である。

Expand All @@ -1378,10 +1378,9 @@ 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=n" で、n は実行可能な場合、getconf によって報
告されるコアの数である。それ以外の場合は、デフォルトで "" になる。
グローバルデフォルトは "--jobs=0" で、(ほぼ) すべてのコアを使用する。

PYUNIT COMPILER *compiler-pyunit*

Expand Down
9 changes: 4 additions & 5 deletions en/quickfix.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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".

Expand All @@ -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*

Expand Down

0 comments on commit 8f7dda4

Please sign in to comment.