diff options
author | yamatsum <42740055+yamatsum@users.noreply.github.com> | 2022-05-13 09:28:10 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 08:28:10 +0800 |
commit | 233c41cb8cfe1aa5a8520fe6104adacc53c0ece2 (patch) | |
tree | 7f516336f4032e85ee2e9a0fdcfda64693807414 /test/functional/helpers.lua | |
parent | b96037e42de42b504dd6f02d03de608d1b2a32c5 (diff) | |
download | rneovim-233c41cb8cfe1aa5a8520fe6104adacc53c0ece2.tar.gz rneovim-233c41cb8cfe1aa5a8520fe6104adacc53c0ece2.tar.bz2 rneovim-233c41cb8cfe1aa5a8520fe6104adacc53c0ece2.zip |
feat(defaults): search selection by * and # in visual mode (#18538)
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index e9c3d4bd92..3d64625752 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -41,10 +41,8 @@ module.nvim_set = ( module.nvim_argv = { module.nvim_prog, '-u', 'NONE', '-i', 'NONE', '--cmd', module.nvim_set, - '--cmd', 'unmap Y', - '--cmd', 'unmap <C-L>', - '--cmd', 'iunmap <C-U>', - '--cmd', 'iunmap <C-W>', + '--cmd', 'mapclear', + '--cmd', 'mapclear!', '--embed'} -- Directory containing nvim. |