mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
fix(filetype): check for non-nil match in detect.rules (#19129)
This commit is contained in:
parent
0c363d1a70
commit
f2fa11708c
@ -906,11 +906,13 @@ function M.rules(path)
|
||||
local dir = vim.fn.expand(path, ':h')
|
||||
for _, line in ipairs(config_lines) do
|
||||
local match = line:match(udev_rules_pattern)
|
||||
if match then
|
||||
local udev_rules = line:gsub(udev_rules_pattern, match, 1)
|
||||
if dir == udev_rules then
|
||||
return 'udevrules'
|
||||
end
|
||||
end
|
||||
end
|
||||
return 'hog'
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user