diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-06-30 15:30:54 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-07-01 10:17:39 +0800 |
commit | 610cf9f95032bd219cb5695d169fe2cd698ec307 (patch) | |
tree | e294c5bcae1401e0ba3fa37ed6c60417d47f960f /src/nvim/ex_cmds.lua | |
parent | cf8df141f3c7e706c86aadba404ae8ad54d5c795 (diff) | |
download | rneovim-610cf9f95032bd219cb5695d169fe2cd698ec307.tar.gz rneovim-610cf9f95032bd219cb5695d169fe2cd698ec307.tar.bz2 rneovim-610cf9f95032bd219cb5695d169fe2cd698ec307.zip |
vim-patch:8.0.1570: can't use :popup for a menu in the terminal
Problem: Can't use :popup for a menu in the terminal. (Wei Zhang)
Solution: Make :popup work in the terminal. Also fix that entries were
included that don't work in the current state.
https://github.com/vim/vim/commit/29a2c08d792e4458a0af8371f5341394829fce29
Diffstat (limited to 'src/nvim/ex_cmds.lua')
-rw-r--r-- | src/nvim/ex_cmds.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.lua b/src/nvim/ex_cmds.lua index b18bdefc2a..cc69921883 100644 --- a/src/nvim/ex_cmds.lua +++ b/src/nvim/ex_cmds.lua @@ -1991,7 +1991,7 @@ module.cmds = { command='popup', flags=bit.bor(NEEDARG, EXTRA, BANG, TRLBAR, NOTRLCOM, CMDWIN), addr_type='ADDR_NONE', - func='ex_ni', + func='ex_popup', }, { command='ppop', |