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,9 +906,11 @@ function M.rules(path)
|
|||||||
local dir = vim.fn.expand(path, ':h')
|
local dir = vim.fn.expand(path, ':h')
|
||||||
for _, line in ipairs(config_lines) do
|
for _, line in ipairs(config_lines) do
|
||||||
local match = line:match(udev_rules_pattern)
|
local match = line:match(udev_rules_pattern)
|
||||||
local udev_rules = line:gsub(udev_rules_pattern, match, 1)
|
if match then
|
||||||
if dir == udev_rules then
|
local udev_rules = line:gsub(udev_rules_pattern, match, 1)
|
||||||
return 'udevrules'
|
if dir == udev_rules then
|
||||||
|
return 'udevrules'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return 'hog'
|
return 'hog'
|
||||||
|
Loading…
Reference in New Issue
Block a user