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 343b717 commit 1cd5bf2Copy full SHA for 1cd5bf2
1 file changed
lua/lspsaga/symbol/winbar.lua
@@ -27,6 +27,9 @@ local function path_in_bar(buf)
27
end
28
29
for item in util.path_itera(buf) do
30
+ if string.find(item, '%%') then
31
+ item = item:gsub('%%', '%%%%')
32
+ end
33
item = #items == 0
34
and '%#' .. (hl or 'SagaFileIcon') .. '#' .. (icon and icon .. ' ' or '') .. '%*' .. bar.prefix .. 'FileName#' .. item
35
or bar.prefix
0 commit comments