mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
chore: ignore unused args in filetype functions (#16927)
Also mark the 'getline' helper function as private to avoid docgen.
This commit is contained in:
parent
bb5e03fa4b
commit
74a90cf098
@ -19,11 +19,13 @@ local function starsetf(ft)
|
|||||||
}}
|
}}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@private
|
||||||
local function getline(bufnr, lnum)
|
local function getline(bufnr, lnum)
|
||||||
return api.nvim_buf_get_lines(bufnr, lnum-1, lnum, false)[1]
|
return api.nvim_buf_get_lines(bufnr, lnum-1, lnum, false)[1]
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Filetypes based on file extension
|
-- Filetypes based on file extension
|
||||||
|
-- luacheck: push no unused args
|
||||||
local extension = {
|
local extension = {
|
||||||
-- BEGIN EXTENSION
|
-- BEGIN EXTENSION
|
||||||
["8th"] = "8th",
|
["8th"] = "8th",
|
||||||
@ -1325,6 +1327,7 @@ local pattern = {
|
|||||||
["zsh.*"] = starsetf('zsh'),
|
["zsh.*"] = starsetf('zsh'),
|
||||||
-- END PATTERN
|
-- END PATTERN
|
||||||
}
|
}
|
||||||
|
-- luacheck: pop
|
||||||
|
|
||||||
---@private
|
---@private
|
||||||
local function sort_by_priority(t)
|
local function sort_by_priority(t)
|
||||||
|
Loading…
Reference in New Issue
Block a user