diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-09 19:48:50 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2023-11-09 21:34:04 +0800 |
commit | f748a73a357710db6094d4a428cd056f5df226a9 (patch) | |
tree | 152ee1887dbeb5b2cd14bc2742e57fccabede040 /test/functional/vimscript/map_functions_spec.lua | |
parent | d4dbfb092b370bced6728e07a38661a579ff5e4b (diff) | |
download | rneovim-f748a73a357710db6094d4a428cd056f5df226a9.tar.gz rneovim-f748a73a357710db6094d4a428cd056f5df226a9.tar.bz2 rneovim-f748a73a357710db6094d4a428cd056f5df226a9.zip |
vim-patch:8.2.4861: it is not easy to restore saved mappings
Problem: It is not easy to restore saved mappings.
Solution: Make mapset() accept a dict argument. (Ernie Rael, closes vim/vim#10295)
https://github.com/vim/vim/commit/51d04d16f21e19d6eded98f9530d84089102f925
Co-authored-by: Ernie Rael <errael@raelity.com>
Diffstat (limited to 'test/functional/vimscript/map_functions_spec.lua')
-rw-r--r-- | test/functional/vimscript/map_functions_spec.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/vimscript/map_functions_spec.lua b/test/functional/vimscript/map_functions_spec.lua index 3f8bf24505..14818d9141 100644 --- a/test/functional/vimscript/map_functions_spec.lua +++ b/test/functional/vimscript/map_functions_spec.lua @@ -30,6 +30,7 @@ describe('maparg()', function() buffer=0, nowait=0, mode='n', + abbr=0, noremap=1, lnum=0, } @@ -156,6 +157,7 @@ describe('maparg()', function() buffer = 0, expr = 0, mode = 'n', + abbr = 0, noremap = 1, nowait = 0, script = 0, |