Skip to content

Commit c991ce0

Browse files
committed
Update builtin.{txt,jax}
1 parent 39ece7f commit c991ce0

2 files changed

Lines changed: 23 additions & 4 deletions

File tree

doc/builtin.jax

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*builtin.txt* For Vim バージョン 9.2. Last change: 2026 Jun 09
1+
*builtin.txt* For Vim バージョン 9.2. Last change: 2026 Jun 13
22

33

44
VIM リファレンスマニュアル by Bram Moolenaar
@@ -2016,6 +2016,14 @@ complete({startcol}, {matches}) *complete()* *E785*
20162016
この関数で設定した候補は普通の挿入モード補完と同じ様に CTRL-N
20172017
と CTRL-P で選択できる。設定されていればポップアップメニューが
20182018
表示される。|ins-completion-menu| を参照。
2019+
他の |ins-completion| モードとは異なり、この補完機能がアクティ
2020+
ブな間は、CTRL-N キーと CTRL-P キーをマップすることができる。
2021+
例えば、CTRL-N でマッチした候補を挿入せずに選択範囲を移動する
2022+
には、以下のようにする: >
2023+
2024+
inoremap <expr> <C-N> complete_info().mode ==# 'eval'
2025+
\ ? '<Down>' : '<C-N>'
2026+
<
20192027

20202028
例 (旧来の Vim script を使用): >
20212029

@@ -12986,8 +12994,10 @@ hurd GNU/Hurd バージョン
1298612994
iconv iconv()をサポート
1298712995
image ポップアップウィンドウの "image" 属性をサポート。
1298812996
|popup-image| を参照。
12989-
image_cairo Cairo image バックエンド (GTK GUI) をサポート。
12997+
image_cairo Cairo image バックエンド (GTK2 および GTK3 GUI) をサ
12998+
ポート。
1299012999
image_gdi GDI image バックエンド (Windows GUI) をサポート。
13000+
image_gdk GDK image バックエンド (GTK4 GUI) をサポート。
1299113001
image_kitty kitty graphics protocol image バックエンド (端末) をサ
1299213002
ポート。
1299313003
image_sixel DEC sixel image バックエンド (端末) をサポート。

en/builtin.txt

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*builtin.txt* For Vim version 9.2. Last change: 2026 Jun 09
1+
*builtin.txt* For Vim version 9.2. Last change: 2026 Jun 13
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1986,6 +1986,14 @@ complete({startcol}, {matches}) *complete()* *E785*
19861986
The match can be selected with CTRL-N and CTRL-P as usual with
19871987
Insert mode completion. The popup menu will appear if
19881988
specified, see |ins-completion-menu|.
1989+
Unlike with other |ins-completion| modes, the CTRL-N and
1990+
CTRL-P keys can be mapped while this completion is active.
1991+
For example, to make CTRL-N move the selection without
1992+
inserting the match: >
1993+
1994+
inoremap <expr> <C-N> complete_info().mode ==# 'eval'
1995+
\ ? '<Down>' : '<C-N>'
1996+
<
19891997

19901998
Example (using legacy Vim script): >
19911999
@@ -13302,8 +13310,9 @@ hurd GNU/Hurd version of Vim
1330213310
iconv Can use iconv() for conversion.
1330313311
image Compiled with the popup window "image" attribute.
1330413312
See |popup-image|.
13305-
image_cairo Compiled with the Cairo image backend (GTK GUI).
13313+
image_cairo Compiled with the Cairo image backend (GTK2 and GTK3 GUI).
1330613314
image_gdi Compiled with the GDI image backend (Windows GUI).
13315+
image_gdk Compiled with the GDK image backend (GTK4 GUI).
1330713316
image_kitty Compiled with the kitty graphics protocol image backend
1330813317
(terminal).
1330913318
image_sixel Compiled with the DEC sixel image backend (terminal).

0 commit comments

Comments
 (0)