diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-03-20 09:18:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 09:18:25 -0400 |
commit | d3ac5a342d27a3cbfca25a9e9b3f3496a77db68a (patch) | |
tree | 8e6da1b0500ea0b11a97c1a0472204bdf4d4fc16 /test/functional/terminal/buffer_spec.lua | |
parent | d8f9dcd5deb72f1fbc706d7b3bb5b823c7998e38 (diff) | |
parent | a40eb7cc991eb4f8b89f467e8e42563868efa76b (diff) | |
download | rneovim-d3ac5a342d27a3cbfca25a9e9b3f3496a77db68a.tar.gz rneovim-d3ac5a342d27a3cbfca25a9e9b3f3496a77db68a.tar.bz2 rneovim-d3ac5a342d27a3cbfca25a9e9b3f3496a77db68a.zip |
Merge #22707 vim.version: range(), lazy.nvim impl
Diffstat (limited to 'test/functional/terminal/buffer_spec.lua')
-rw-r--r-- | test/functional/terminal/buffer_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/buffer_spec.lua b/test/functional/terminal/buffer_spec.lua index 676be151ee..b983ea89d5 100644 --- a/test/functional/terminal/buffer_spec.lua +++ b/test/functional/terminal/buffer_spec.lua @@ -202,7 +202,7 @@ describe(':terminal buffer', function() -- Save the buffer number of the terminal for later testing. local tbuf = eval('bufnr("%")') - local exitcmd = helpers.is_os('win') + local exitcmd = is_os('win') and "['cmd', '/c', 'exit']" or "['sh', '-c', 'exit']" source([[ |