comparison runtime/doc/popup.txt @ 23507:88a7e3bbb594 v8.2.2296

patch 8.2.2296: cannot use CTRL-N and CTRL-P in a popup menu Commit: https://github.com/vim/vim/commit/014f698cb68ff80c49f9f5d3dbe78127df281885 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 4 13:18:30 2021 +0100 patch 8.2.2296: cannot use CTRL-N and CTRL-P in a popup menu Problem: Cannot use CTRL-N and CTRL-P in a popup menu. Solution: Use CTRL-N like <Down> and CTRL-P like <Up>. (closes https://github.com/vim/vim/issues/7614)
author Bram Moolenaar <Bram@vim.org>
date Mon, 04 Jan 2021 13:30:03 +0100
parents e7c125224b1a
children 96206643bd9f
comparison
equal deleted inserted replaced
23506:8d4f034c1776 23507:88a7e3bbb594
307 Can also be used as a |method|: > 307 Can also be used as a |method|: >
308 GetText()->popup_dialog({}) 308 GetText()->popup_dialog({})
309 309
310 popup_filter_menu({id}, {key}) *popup_filter_menu()* 310 popup_filter_menu({id}, {key}) *popup_filter_menu()*
311 Filter that can be used for a popup. These keys can be used: 311 Filter that can be used for a popup. These keys can be used:
312 j <Down> select item below 312 j <Down> <C-N> select item below
313 k <Up> select item above 313 k <Up> <C-P> select item above
314 <Space> <Enter> accept current selection 314 <Space> <Enter> accept current selection
315 x Esc CTRL-C cancel the menu 315 x Esc CTRL-C cancel the menu
316 Other keys are ignored. 316 Other keys are ignored.
317 Always returns |v:true|. 317 Always returns |v:true|.
318 318