|
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 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
@@ -1986,6 +1986,14 @@ complete({startcol}, {matches}) *complete()* *E785* |
1986 | 1986 | The match can be selected with CTRL-N and CTRL-P as usual with |
1987 | 1987 | Insert mode completion. The popup menu will appear if |
1988 | 1988 | 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 | +< |
1989 | 1997 |
|
1990 | 1998 | Example (using legacy Vim script): > |
1991 | 1999 |
|
@@ -13302,8 +13310,9 @@ hurd GNU/Hurd version of Vim |
13302 | 13310 | iconv Can use iconv() for conversion. |
13303 | 13311 | image Compiled with the popup window "image" attribute. |
13304 | 13312 | 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). |
13306 | 13314 | image_gdi Compiled with the GDI image backend (Windows GUI). |
| 13315 | +image_gdk Compiled with the GDK image backend (GTK4 GUI). |
13307 | 13316 | image_kitty Compiled with the kitty graphics protocol image backend |
13308 | 13317 | (terminal). |
13309 | 13318 | image_sixel Compiled with the DEC sixel image backend (terminal). |
|
0 commit comments