diff options
author | Gregory Anders <greg@gpanders.com> | 2021-08-16 19:28:52 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 18:28:52 -0700 |
commit | 2cb8db34e3a275dec3dacb10fdc75640f4ec8174 (patch) | |
tree | d49331f40470d9084e6198439c08cac4d5478e74 /test/functional/helpers.lua | |
parent | 3954537b9e243fb3df3672d47fe3d9529fa4e544 (diff) | |
download | rneovim-2cb8db34e3a275dec3dacb10fdc75640f4ec8174.tar.gz rneovim-2cb8db34e3a275dec3dacb10fdc75640f4ec8174.tar.bz2 rneovim-2cb8db34e3a275dec3dacb10fdc75640f4ec8174.zip |
feat: defaults: set undo points in <C-U> and <C-W> (#15400)
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 21ae529b71..a1b464af13 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -44,6 +44,8 @@ module.nvim_argv = { '--cmd', module.nvim_set, '--cmd', 'unmap Y', '--cmd', 'unmap <C-L>', + '--cmd', 'iunmap <C-U>', + '--cmd', 'iunmap <C-W>', '--embed'} -- Directory containing nvim. |