diff options
author | Shougo <Shougo.Matsu@gmail.com> | 2022-08-29 14:11:52 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-29 13:11:52 +0800 |
commit | 253f0ffd8d4784b7fca03f8f6c2455b9ee83ff9b (patch) | |
tree | c013d5603d348f69ea5d47c2bf0477df1504e623 /src/nvim/eval.lua | |
parent | 1dcaa75a6564b8a90e74a96e242803c6aa3f59cf (diff) | |
download | rneovim-253f0ffd8d4784b7fca03f8f6c2455b9ee83ff9b.tar.gz rneovim-253f0ffd8d4784b7fca03f8f6c2455b9ee83ff9b.tar.bz2 rneovim-253f0ffd8d4784b7fca03f8f6c2455b9ee83ff9b.zip |
vim-patch:9.0.0285: it is not easy to change the command line from a plugin (#19979)
vim-patch:9.0.0285: it is not easy to change the command line from a plugin
Problem: It is not easy to change the command line from a plugin.
Solution: Add setcmdline(). (Shougo Matsushita, closes vim/vim#10869)
https://github.com/vim/vim/commit/07ea5f1509fe8dafe3262ed2702b4d0fc99e288b
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index 4863d8013d..3e89489459 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -332,6 +332,7 @@ return { setcharpos={args=2, base=2}, setcharsearch={args=1, base=1}, setcmdpos={args=1, base=1}, + setcmdline={args={1, 2}, base=1}, setcursorcharpos={args={1, 3}, base=1}, setenv={args=2, base=2}, setfperm={args=2, base=1}, |