fix(nvim): use valid separator between tab numbers in heirline

This commit is contained in:
Price Hiller 2023-09-04 21:39:35 -05:00
parent b9f962ee50
commit 6012b30bb8
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -438,7 +438,7 @@ return {
local sep = ""
if #vim.api.nvim_list_tabpages() ~= self.tabnr then
sep = ""
sep = "|"
end
return prefix .. "%" .. self.tabnr .. "T " .. self.tabpage .. " %T" .. sep
end,