We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffa3ce1 commit 4a508d6Copy full SHA for 4a508d6
lua/rest-nvim/result/winbar.lua
@@ -72,7 +72,7 @@ end
72
---Set the results window winbar highlighting groups
73
function winbar.set_hl()
74
-- Set highlighting for the winbar panes name
75
- local textinfo_fg = get_hl_group_fg("TextInfo")
+ local textinfo_fg = get_hl_group_fg("Statement")
76
for i, pane in ipairs(winbar.pane_map) do
77
---@diagnostic disable-next-line undefined-field
78
vim.api.nvim_set_hl(0, pane.name .. "Highlight", {
@@ -83,7 +83,7 @@ function winbar.set_hl()
83
end
84
85
-- Set highlighting for the winbar text
86
- local textmuted_fg = get_hl_group_fg("TextMuted")
+ local textmuted_fg = get_hl_group_fg("Comment")
87
vim.api.nvim_set_hl(0, "RestText", { fg = textmuted_fg })
88
89
0 commit comments