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