Skip to content

Update options.{txt,jax} #1569

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 3 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
20 changes: 13 additions & 7 deletions doc/options.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*options.txt* For Vim バージョン 9.1. Last change: 2024 Jun 01
*options.txt* For Vim バージョン 9.1. Last change: 2024 Jun 05


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -1956,13 +1956,13 @@ Note 1番目の形式では、行全体がオプション指定に使われる
は、|option-backslash| を参照。

*'commentstring'* *'cms'* *E537*
'commentstring' 'cms' 文字列 (既定では "/*%s*/")
'commentstring' 'cms' 文字列 (既定では "/* %s */")
バッファについてローカル
{|+folding| 機能付きでコンパイルされたときのみ有効}
コメント用のテンプレート (雛形)。値の中の "%s" はコメントの内容と置き
換えられる。現在のところ、折り畳み用のマーカーを追加するためにのみ使用
されている。|fold-marker| を参照。コメントプラグイン |comment-install|
でも使用される
コメント用のテンプレート (雛形)。値内の "%s" はコメントテキストに置き
換えられ、可能な場合はスペースで埋める必要がある。現在のところ、折り畳
み用のマーカーを追加するために使用されている。|fold-marker| を参照。
メントプラグインでも普通に使用される (例: |comment-install|)

*'compatible'* *'cp'* *'nocompatible'* *'nocp'*
'compatible' 'cp' 切替 (既定では オン、ファイル|vimrc|または |gvimrc|
Expand Down Expand Up @@ -2143,7 +2143,7 @@ Note 1番目の形式では、行全体がオプション指定に使われる

*'completeopt'* *'cot'*
'completeopt' 'cot' 文字列 (既定では "menu,preview")
グローバル
グローバル/バッファについてローカル |global-local|
入力モードでの補完|ins-completion|についてのオプションのコンマ区切りの
リスト。サポートされている値は次の通り:

Expand Down Expand Up @@ -2187,6 +2187,12 @@ Note 1番目の形式では、行全体がオプション指定に使われる
自分で選ぶことを強制する。"menu" か "menuone" と組み合わせ
たときにだけ機能する。

fuzzy 補完候補に対して |fuzzy-matching| を有効にする。これによ
り、より柔軟で直感的なマッチングが可能になり、文字をスキップしたり、
正確なシーケンスが入力されていなくてもマッチを見つけることができる。
補完候補が選択肢のリストからどのように削減されるかだけが異なり、候
補が収集される方法 (異なる補完タイプを使用) は関係ない。

*'completepopup'* *'cpp'*
'completepopup' 'cpp' 字列 (既定では空)
グローバル
Expand Down
19 changes: 14 additions & 5 deletions en/options.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*options.txt* For Vim version 9.1. Last change: 2024 Jun 01
*options.txt* For Vim version 9.1. Last change: 2024 Jun 05


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -1909,13 +1909,14 @@ A jump table for the options with a short description can be found at |Q_op|.
insert a space.

*'commentstring'* *'cms'* *E537*
'commentstring' 'cms' string (default "/*%s*/")
'commentstring' 'cms' string (default "/* %s */")
local to buffer
{not available when compiled without the |+folding|
feature}
A template for a comment. The "%s" in the value is replaced with the
comment text. Currently only used to add markers for folding, see
|fold-marker|. Also used by comment plugins |comment-install|.
comment text, and should be padded with a space when possible.
Currently used to add markers for folding, see |fold-marker| also
commonly used by commenting plugins (e.g. |comment-install|).

*'compatible'* *'cp'* *'nocompatible'* *'nocp'*
'compatible' 'cp' boolean (default on, off when a |vimrc| or |gvimrc|
Expand Down Expand Up @@ -2100,7 +2101,7 @@ A jump table for the options with a short description can be found at |Q_op|.

*'completeopt'* *'cot'*
'completeopt' 'cot' string (default: "menu,preview")
global
global or local to buffer |global-local|
A comma-separated list of options for Insert mode completion
|ins-completion|. The supported values are:

Expand Down Expand Up @@ -2143,6 +2144,14 @@ A jump table for the options with a short description can be found at |Q_op|.
select one from the menu. Only works in combination with
"menu" or "menuone".

fuzzy Enable |fuzzy-matching| for completion candidates. This
allows for more flexible and intuitive matching, where
characters can be skipped and matches can be found even
if the exact sequence is not typed. Only makes a
difference how completion candidates are reduced from the
list of alternatives, but not how the candidates are
collected (using different completion types).

*'completepopup'* *'cpp'*
'completepopup' 'cpp' string (default empty)
global
Expand Down