Skip to content

Commit 7873ca4

Browse files
committed
Update by original
1 parent 77b0b73 commit 7873ca4

File tree

2 files changed

+32
-30
lines changed

2 files changed

+32
-30
lines changed

doc/options.jax

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim バージョン 9.1. Last change: 2025 Apr 27
1+
*options.txt* For Vim バージョン 9.1. Last change: 2025 Apr 30
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -2171,8 +2171,8 @@ Note 1番目の形式では、行全体がオプション指定に使われる
21712171
ソースに任意のマッチ数制限を指定できる。
21722172
例えば、".^9,w,u,t^5" は、カレントバッファからのマッチ数を 9 個まで、
21732173
タグからのマッチ数を 5 個までに制限する。その他の補完元は無制限である。
2174-
マッチ数制限は前方補完 (CTRL-N) 時にのみ有効で、後方補完 (CTRL-P) 時に
2175-
は無視される
2174+
Note: マッチ数制限は前方補完 (CTRL-N) 時にのみ有効で、後方補完 (CTRL-P)
2175+
時には無視される
21762176

21772177
*'completefunc'* *'cfu'*
21782178
'completefunc' 'cfu' 文字列 (既定では空)
@@ -8559,11 +8559,12 @@ Note 1番目の形式では、行全体がオプション指定に使われる
85598559
'tagfunc' 'tfu' 文字列 (既定では "")
85608560
バッファについてローカル
85618561
{|+eval| 機能付きでコンパイルされたときのみ有効}
8562-
このオプションは、タグ検索を実行するために使用される関数を指定する。こ
8563-
の関数はタグパターンを取得し、一致するタグのリストを返さなければならな
8564-
い。|tag-function| を参照。関数の書き方と例の説明がある。値として関数
8565-
名、|lambda|、|Funcref| が使える。詳細は |option-value-function| を参
8566-
照。
8562+
このオプションは、タグ検索 (|taglist()| を含む) を実行するために使用さ
8563+
れる関数を指定する。
8564+
この関数はタグパターンを取得し、一致するタグのリストを返さなければなら
8565+
ない。|tag-function| を参照。関数の書き方と例の説明がある。値として関
8566+
数名、|lambda|、|Funcref| が使える。詳細は |option-value-function| を
8567+
参照。
85678568
セキュリティ上の理由から、このオプションを |modeline| または |sandbox|
85688569
内で設定することはできない。
85698570

@@ -9760,19 +9761,19 @@ Note 1番目の形式では、行全体がオプション指定に使われる
97609761
:set wildmode=full
97619762
< 押下のたびに完全マッチを補完する (デフォルトの動作) >
97629763
:set wildmode=longest,full
9763-
< 1回目の押下: 最長共通の部分文字列
9764-
2回目の押下: 完全マッチを順に切り替える >
9764+
< 1 回目の押下: 最長共通の部分文字列
9765+
2 回目の押下: 完全マッチを順に切り替える >
97659766
:set wildmode=list:full
9766-
< 1回目の押下: すべてのマッチをリストし、最初の項目を補完する >
9767+
< 1 回目の押下: すべてのマッチをリストし、最初の項目を補完する >
97679768
:set wildmode=list,full
9768-
< 1回目の押下: マッチのみをリストする
9769-
2回目の押下: 完全マッチを補完する >
9769+
< 1 回目の押下: マッチのみをリストする
9770+
2 回目の押下: 完全マッチを補完する >
97709771
:set wildmode=longest,list
9771-
< 1回目の押下: 最長共通の部分文字列
9772-
2回目の押下: すべてのマッチをリストする >
9772+
< 1 回目の押下: 最長共通の部分文字列
9773+
2 回目の押下: すべてのマッチをリストする >
97739774
:set wildmode=noselect:full
9774-
< 初回の押下では補完も選択もせずに 'wildmenu' を表示
9775-
2 回目の押下では完全マッチを循環する >
9775+
< 1 回目の押下: 補完も選択もせずに 'wildmenu' を表示
9776+
2 回目の押下: 完全マッチを循環する >
97769777
:set wildmode=noselect:lastused,full
97779778
< 上記と同じだが、バッファのマッチは最後に使用された時間でソートされる
97789779
詳細はこちら |cmdline-completion|。

en/options.txt

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim version 9.1. Last change: 2025 Apr 27
1+
*options.txt* For Vim version 9.1. Last change: 2025 Apr 30
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2085,7 +2085,7 @@ A jump table for the options with a short description can be found at |Q_op|.
20852085
|i_CTRL-X_CTRL-D|
20862086
] tag completion
20872087
t same as "]"
2088-
f{func} call the function {func}. Multiple "f" flags may be specified.
2088+
f{func} call the function {func}. Multiple "f" flags may be specified.
20892089
Refer to |complete-functions| for details on how the function
20902090
is invoked and what it should return. The value can be the
20912091
name of a function or a |Funcref|. For |Funcref| values,
@@ -2128,9 +2128,9 @@ A jump table for the options with a short description can be found at |Q_op|.
21282128
An optional match limit can be specified for a completion source by
21292129
appending a caret ("^") followed by a {count} to the source flag.
21302130
For example: ".^9,w,u,t^5" limits matches from the current buffer
2131-
to 9 and from tags to 5. Other sources remain unlimited.
2132-
The match limit takes effect only during forward completion (CTRL-N)
2133-
and is ignored during backward completion (CTRL-P).
2131+
to 9 and from tags to 5. Other sources remain unlimited.
2132+
Note: The match limit takes effect only during forward completion
2133+
(CTRL-N) and is ignored during backward completion (CTRL-P).
21342134

21352135
*'completefunc'* *'cfu'*
21362136
'completefunc' 'cfu' string (default: empty)
@@ -3656,7 +3656,7 @@ A jump table for the options with a short description can be found at |Q_op|.
36563656
lastline '@' 'display' contains lastline/truncate
36573657
trunc '>' truncated text in the
36583658
|ins-completion-menu|.
3659-
truncrl '<' same as "trunc' in 'rightleft' mode
3659+
truncrl '<' same as "trunc" in 'rightleft' mode
36603660

36613661
Any one that is omitted will fall back to the default.
36623662

@@ -4986,10 +4986,10 @@ A jump table for the options with a short description can be found at |Q_op|.
49864986
*'isexpand'* *'ise'*
49874987
'isexpand' 'ise' string (default: "")
49884988
local to buffer
4989-
Defines characters and patterns for completion in insert mode. Used by
4990-
the |complete_match()| function to determine the starting position for
4991-
completion. This is a comma-separated list of triggers. Each trigger
4992-
can be:
4989+
Defines characters and patterns for completion in insert mode. Used
4990+
by the |complete_match()| function to determine the starting position
4991+
for completion. This is a comma-separated list of triggers. Each
4992+
trigger can be:
49934993
- A single character like "." or "/"
49944994
- A sequence of characters like "->", "/*", or "/**"
49954995

@@ -8521,7 +8521,8 @@ A jump table for the options with a short description can be found at |Q_op|.
85218521
local to buffer
85228522
{not available when compiled without the |+eval|
85238523
feature}
8524-
This option specifies a function to be used to perform tag searches.
8524+
This option specifies a function to be used to perform tag searches
8525+
(including |taglist()|).
85258526
The function gets the tag pattern and should return a List of matching
85268527
tags. See |tag-function| for an explanation of how to write the
85278528
function and an example. The value can be the name of a function, a
@@ -9747,8 +9748,8 @@ A jump table for the options with a short description can be found at |Q_op|.
97479748
< First press: longest common substring
97489749
Second press: list all matches >
97499750
:set wildmode=noselect:full
9750-
< Show 'wildmenu' without completing or selecting on first press
9751-
Cycle full matches on second press >
9751+
< First press: show 'wildmenu' without completing or selecting
9752+
Second press: cycle full matches >
97529753
:set wildmode=noselect:lastused,full
97539754
< Same as above, but buffer matches are sorted by time last used
97549755
More info here: |cmdline-completion|.

0 commit comments

Comments
 (0)