Skip to content

Commit c365bc0

Browse files
authored
Merge pull request #2691 from h-east/update-builtin
Update builtin.{txt,jax}
2 parents 75ce2e1 + fa5c55a commit c365bc0

2 files changed

Lines changed: 32 additions & 13 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 17
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: 20 additions & 11 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 17
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
@@ -4036,20 +4044,20 @@ getbufvar({buf}, {varname} [, {def}]) *getbufvar()*
40364044

40374045

40384046
getbgcolor() *getbgcolor()*
4039-
Returns a |List| describing the current background colour
4040-
as [red, green, blue], each component in the range 0..255.
4047+
Returns a |List| describing the current background colour as
4048+
[red, green, blue], each component in the range 0..255.
40414049

4042-
In the GUI (or with 'termguicolors' set) the value comes
4043-
from the |hl-Normal| highlight group's background. In a
4044-
terminal it comes from the OSC 11 response (also available
4045-
as |v:termrbgresp|).
4050+
In the GUI (or with 'termguicolors' set) the value comes from
4051+
the |hl-Normal| highlight group's background. In a terminal
4052+
it comes from the OSC 11 response (also available as
4053+
|v:termrbgresp|).
40464054
Returns [] when no value is available, e.g. before the
40474055
terminal has answered the OSC 11 query, or when |hl-Normal|
40484056
has no background colour set.
40494057

4050-
Useful when manually crafting RGB image data and you want
4051-
to flatten alpha onto the same colour the terminal will
4052-
actually display behind the image.
4058+
Useful when manually crafting RGB image data and you want to
4059+
flatten alpha onto the same colour the terminal will actually
4060+
display behind the image.
40534061

40544062
Return type: list<any>
40554063

@@ -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)