Skip to content

Commit b47be1f

Browse files
authored
Merge pull request #2057 from h-east/update-usr_41
Update usr_41.{txt,jax}
2 parents 19cd56a + 19f5fac commit b47be1f

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

doc/usr_41.jax

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -35,9 +35,11 @@ Vim script 言語は vimrc ファイルや構文ファイルなど、さまざ
3535
これらのスクリプトは、Vim が動作をカスタマイズおよび拡張するために使用する、関
3636
数、コマンド、および設定を定義するでしょう。
3737

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+
る説明や議論を簡潔にするのに役立ちます。
4143

4244
Vim プラグインは、1 つ以上の Vim script と、ヘルプドキュメント、構成ファイル、
4345
その他のリソース等の追加ファイルのコレクションであり、Vim に特定の特性や機能を
@@ -1099,6 +1101,8 @@ Quickfixとlocationリスト: *quickfix-functions*
10991101
complete_add() 補完候補を追加する
11001102
complete_check() 補完処理を終えるべきかどうかをチェックする
11011103
complete_info() 現在の補完情報を得る
1104+
complete_match() 挿入モードの補完の開始マッチ桁とトリガーテキス
1105+
トを取得する
11021106
pumvisible() ポップアップメニューが表示されているかチェック
11031107
pum_getpos() 表示されているポップアップメニューの位置とサイ
11041108
ズを得る

en/usr_41.txt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -35,8 +35,10 @@ like for example .vim files or configuration files like .vimrc and .gvimrc.
3535
These scripts may define functions, commands and settings that Vim uses to
3636
customize and extend its behavior.
3737

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
4042
streamline explanations and discussions about scripting with Vim.
4143

4244
A Vim plugin is a collection of one or more Vim scripts, along with additional
@@ -1124,6 +1126,8 @@ Insert mode completion: *completion-functions*
11241126
complete_add() add to found matches
11251127
complete_check() check if completion should be aborted
11261128
complete_info() get current completion information
1129+
complete_match() get insert completion start match col and
1130+
trigger text
11271131
pumvisible() check if the popup menu is displayed
11281132
pum_getpos() position and size of popup menu if visible
11291133

0 commit comments

Comments
 (0)