diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-08-19 06:13:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 06:13:08 -0700 |
commit | 19a0d90bb3479bb6516be229f6001646329d842f (patch) | |
tree | 9c4aa1f2c91d71c10cc42e9e3eed04627cc97482 /test/functional/legacy/arglist_spec.lua | |
parent | 7bff642169438a66557b65d6aba80536eaf570fa (diff) | |
parent | d8ab8cccd0cf5acdf3e7c3ca229cad4160a6fc2e (diff) | |
download | rneovim-19a0d90bb3479bb6516be229f6001646329d842f.tar.gz rneovim-19a0d90bb3479bb6516be229f6001646329d842f.tar.bz2 rneovim-19a0d90bb3479bb6516be229f6001646329d842f.zip |
Merge #15410 defaults: 'hidden', 'nojoinspaces'
ref #6289
Diffstat (limited to 'test/functional/legacy/arglist_spec.lua')
-rw-r--r-- | test/functional/legacy/arglist_spec.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/legacy/arglist_spec.lua b/test/functional/legacy/arglist_spec.lua index 67c5750033..6a2e86ccb4 100644 --- a/test/functional/legacy/arglist_spec.lua +++ b/test/functional/legacy/arglist_spec.lua @@ -156,10 +156,12 @@ describe('argument list commands', function() eq({'a', 'b', 'a', 'c'}, eval('argv()')) command('0argedit x') eq({'x', 'a', 'b', 'a', 'c'}, eval('argv()')) + command('set nohidden') command('enew! | set modified') assert_fails('argedit y', 'E37:') command('argedit! y') eq({'x', 'y', 'y', 'a', 'b', 'a', 'c'}, eval('argv()')) + command('set hidden') command('%argd') command('argedit a b') eq({'a', 'b'}, eval('argv()')) |