diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-12-03 11:59:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-03 11:59:00 +0800 |
commit | 0d885247b03439ee3aff4c0b9ec095a29bb21759 (patch) | |
tree | 8b3d8419bcfe2408ead3aaf1da73f05835292212 /test/functional/terminal/api_spec.lua | |
parent | 481a3158866638946c91fab28ae5bca97ff1e814 (diff) | |
parent | 64a14026d76ba1798d91e15a941fcb6af7cbc5ad (diff) | |
download | rneovim-0d885247b03439ee3aff4c0b9ec095a29bb21759.tar.gz rneovim-0d885247b03439ee3aff4c0b9ec095a29bb21759.tar.bz2 rneovim-0d885247b03439ee3aff4c0b9ec095a29bb21759.zip |
Merge pull request #26334 from echasnovski/default-colorscheme
feat(highlight): update default color scheme
Diffstat (limited to 'test/functional/terminal/api_spec.lua')
-rw-r--r-- | test/functional/terminal/api_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/api_spec.lua b/test/functional/terminal/api_spec.lua index 93641fc576..c278b2ad0e 100644 --- a/test/functional/terminal/api_spec.lua +++ b/test/functional/terminal/api_spec.lua @@ -12,7 +12,7 @@ describe('api', function() helpers.clear() os.remove(socket_name) screen = child_session.screen_setup(0, '["'..helpers.nvim_prog - ..'", "-u", "NONE", "-i", "NONE", "--cmd", "'..helpers.nvim_set..'"]') + ..'", "-u", "NONE", "-i", "NONE", "--cmd", "colorscheme vim", "--cmd", "'..helpers.nvim_set..'"]') end) after_each(function() os.remove(socket_name) |