mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
fix(filetype): add missing return to changelog detection function (#20403)
This commit is contained in:
parent
94718e479d
commit
33dd917d7f
@ -1734,7 +1734,7 @@ local pattern = {
|
|||||||
{ priority = -1 },
|
{ priority = -1 },
|
||||||
},
|
},
|
||||||
['[cC]hange[lL]og.*'] = starsetf(function(path, bufnr)
|
['[cC]hange[lL]og.*'] = starsetf(function(path, bufnr)
|
||||||
require('vim.filetype.detect').changelog(bufnr)
|
return require('vim.filetype.detect').changelog(bufnr)
|
||||||
end),
|
end),
|
||||||
['.*%.%.ch'] = 'chill',
|
['.*%.%.ch'] = 'chill',
|
||||||
['.*%.cmake%.in'] = 'cmake',
|
['.*%.cmake%.in'] = 'cmake',
|
||||||
|
Loading…
Reference in New Issue
Block a user