Skip to content

Commit

Permalink
fix: escape % in lualine component
Browse files Browse the repository at this point in the history
  • Loading branch information
Isrothy committed Jan 6, 2023
1 parent 17f97fd commit 937a4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lualine/components/aerial.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ function M:format_status(symbols, depth, separator, icons_enabled, colored)
end

for _, symbol in ipairs(symbols) do
local name = symbol.name
local name = utils.stl_escape(symbol.name)
if colored then
name = self:format_hl(self.highlight_groups[symbol.kind].text) .. name
end
Expand Down

0 comments on commit 937a4af

Please sign in to comment.