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/ui/quickfix_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/ui/quickfix_spec.lua')
-rw-r--r-- | test/functional/ui/quickfix_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/ui/quickfix_spec.lua b/test/functional/ui/quickfix_spec.lua index df43871e60..9f072915e2 100644 --- a/test/functional/ui/quickfix_spec.lua +++ b/test/functional/ui/quickfix_spec.lua @@ -89,7 +89,7 @@ describe('quickfix selection highlight', function() end) it('using QuickFixLine highlight group', function() - command('highlight QuickFixLine guibg=Red') + command('highlight QuickFixLine guibg=Red guifg=NONE gui=NONE') command('copen') @@ -124,7 +124,7 @@ describe('quickfix selection highlight', function() it('combines with CursorLine', function() command('set cursorline') - command('highlight QuickFixLine guifg=Red') + command('highlight QuickFixLine guifg=Red guibg=NONE gui=NONE') command('highlight CursorLine guibg=Fuchsia') command('copen') @@ -160,7 +160,7 @@ describe('quickfix selection highlight', function() it('QuickFixLine background takes precedence over CursorLine', function() command('set cursorline') - command('highlight QuickFixLine guibg=Red') + command('highlight QuickFixLine guibg=Red guifg=NONE gui=NONE') command('highlight CursorLine guibg=Fuchsia') command('copen') |