File tree 2 files changed +15
-7
lines changed
2 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 1
- *usr_41.txt* For Vim バージョン 9.1. Last change: 2025 Apr 21
1
+ *usr_41.txt* For Vim バージョン 9.1. Last change: 2025 Apr 27
2
2
3
3
VIM USER MANUAL - by Bram Moolenaar
4
4
@@ -35,9 +35,11 @@ Vim script 言語は vimrc ファイルや構文ファイルなど、さまざ
35
35
これらのスクリプトは、Vim が動作をカスタマイズおよび拡張するために使用する、関
36
36
数、コマンド、および設定を定義するでしょう。
37
37
38
- 命名法を少し乱用しますが、このドキュメント全体では Vim のスクリプト言語を指す
39
- ために "Vim script" を使用します。この略語は、Vim を使用したスクリプトに関する
40
- 説明と議論を簡素化するのに役立ちます。
38
+ *vim-script-notation*
39
+ 正しい表記は "Vim script" (または、新しい Vim9 言語 | Vim9-script | を指す場合は
40
+ "Vim9 script") です。そのため、このドキュメントでは Vim のスクリプト言語を指す
41
+ 際には "Vim script" を使用します。この略称は、Vim を使ったスクリプト作成に関す
42
+ る説明や議論を簡潔にするのに役立ちます。
41
43
42
44
Vim プラグインは、1 つ以上の Vim script と、ヘルプドキュメント、構成ファイル、
43
45
その他のリソース等の追加ファイルのコレクションであり、Vim に特定の特性や機能を
@@ -1099,6 +1101,8 @@ Quickfixとlocationリスト: *quickfix-functions*
1099
1101
complete_add() 補完候補を追加する
1100
1102
complete_check() 補完処理を終えるべきかどうかをチェックする
1101
1103
complete_info() 現在の補完情報を得る
1104
+ complete_match() 挿入モードの補完の開始マッチ桁とトリガーテキス
1105
+ トを取得する
1102
1106
pumvisible() ポップアップメニューが表示されているかチェック
1103
1107
pum_getpos() 表示されているポップアップメニューの位置とサイ
1104
1108
ズを得る
Original file line number Diff line number Diff line change 1
- *usr_41.txt* For Vim version 9.1. Last change: 2025 Apr 21
1
+ *usr_41.txt* For Vim version 9.1. Last change: 2025 Apr 27
2
2
3
3
VIM USER MANUAL - by Bram Moolenaar
4
4
@@ -35,8 +35,10 @@ like for example .vim files or configuration files like .vimrc and .gvimrc.
35
35
These scripts may define functions, commands and settings that Vim uses to
36
36
customize and extend its behavior.
37
37
38
- With a slight abuse of nomenclature, we will use "Vim script" to refer to the
39
- Vim scripting language throughout this documentation. This shorthand helps to
38
+ *vim-script-notation*
39
+ The correct notation is "Vim script" (or "Vim9 script" when refering to the
40
+ new Vim9 language | Vim9-script | ), so we will use "Vim script" to refer to the
41
+ Vim scripting language throughout this documentation. This shorthand helps to
40
42
streamline explanations and discussions about scripting with Vim.
41
43
42
44
A Vim plugin is a collection of one or more Vim scripts, along with additional
@@ -1124,6 +1126,8 @@ Insert mode completion: *completion-functions*
1124
1126
complete_add() add to found matches
1125
1127
complete_check() check if completion should be aborted
1126
1128
complete_info() get current completion information
1129
+ complete_match() get insert completion start match col and
1130
+ trigger text
1127
1131
pumvisible() check if the popup menu is displayed
1128
1132
pum_getpos() position and size of popup menu if visible
1129
1133
You can’t perform that action at this time.
0 commit comments