diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-10-13 23:43:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-13 23:43:06 +0200 |
commit | ba082885d23fe4e1de94474fb616428bd6e00d6e (patch) | |
tree | 4574533679c6ac166b7424a8f0c4fb4c735aba01 /test/functional/ui/hlstate_spec.lua | |
parent | 5cf6beb22178a844bc1b6e75e744eb04508b865c (diff) | |
parent | cc0d7252304f10ed6cdc0bc58789100093f7d021 (diff) | |
download | rneovim-ba082885d23fe4e1de94474fb616428bd6e00d6e.tar.gz rneovim-ba082885d23fe4e1de94474fb616428bd6e00d6e.tar.bz2 rneovim-ba082885d23fe4e1de94474fb616428bd6e00d6e.zip |
Merge pull request #11206 from bfredl/testattr
tests/refactor: make screen.ui use "linegrid" representation internally
Diffstat (limited to 'test/functional/ui/hlstate_spec.lua')
-rw-r--r-- | test/functional/ui/hlstate_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/hlstate_spec.lua b/test/functional/ui/hlstate_spec.lua index d1c115587e..1e18df835a 100644 --- a/test/functional/ui/hlstate_spec.lua +++ b/test/functional/ui/hlstate_spec.lua @@ -259,7 +259,7 @@ describe('ext_hlstate detailed highlights', function() it("can use independent cterm and rgb colors", function() -- tell test module to save all attributes (doesn't change nvim options) - screen:set_hlstate_cterm(true) + screen:set_rgb_cterm(true) screen:set_default_attr_ids({ [1] = {{bold = true, foreground = Screen.colors.Blue1}, {foreground = 12}, {{hi_name = "NonText", ui_name = "EndOfBuffer", kind = "ui"}}}, |