Skip to content

Update quickfix.{txt,jax} #1814

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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