fix(nvim): correctly exclude winbar for no-neck-pain buffers

This commit is contained in:
Price Hiller 2024-01-28 01:46:45 -06:00
parent aa1cb3a0c4
commit 82dd7c2aa9
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -1067,7 +1067,7 @@ return {
return ft:lower():find(excluded_ft) ~= nil return ft:lower():find(excluded_ft) ~= nil
end, { end, {
".*neogit.*", ".*neogit.*",
".*no-neck-pain.*" "no-neck-pain"
}) })
if #matches > 0 then if #matches > 0 then
return false return false