diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-11-01 21:54:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-01 21:54:51 +0100 |
commit | d1091bc658a7992b9c3eaaba1b701187a60f0b5e (patch) | |
tree | eeb5cdfc10bfe2aa968c63186551ef6564e6f2f3 /test/functional/ui/screen.lua | |
parent | 720d442d19de4908e22ecf18223358bb7bbb0753 (diff) | |
parent | c146eddc8b768f1cd395ea0ce54c19e64eff0c08 (diff) | |
download | rneovim-d1091bc658a7992b9c3eaaba1b701187a60f0b5e.tar.gz rneovim-d1091bc658a7992b9c3eaaba1b701187a60f0b5e.tar.bz2 rneovim-d1091bc658a7992b9c3eaaba1b701187a60f0b5e.zip |
Merge pull request #12870 from bfredl/themepark
Color themes (per window/line) and lua theme providers
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r-- | test/functional/ui/screen.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index bf979e89f4..8fa9fcc42f 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -1289,7 +1289,7 @@ local function fmt_ext_state(name, state) for k,v in pairs(state) do str = (str.." ["..k.."] = {win = {id = "..v.win.id.."}, topline = " ..v.topline..", botline = "..v.botline..", curline = "..v.curline - ..", curcol = "..v.curcol.."},\n") + ..", curcol = "..v.curcol.."};\n") end return str .. "}" else @@ -1316,7 +1316,7 @@ function Screen:print_snapshot(attrs, ignore) dict = "{"..self:_pprint_attrs(a).."}" end local keyval = (type(i) == "number") and "["..tostring(i).."]" or i - table.insert(attrstrs, " "..keyval.." = "..dict..",") + table.insert(attrstrs, " "..keyval.." = "..dict..";") end attrstr = (", attr_ids={\n"..table.concat(attrstrs, "\n").."\n}") end |