refactor(lua): consistent use of local aliases

This commit is contained in:
Christian Clason
2025-08-26 15:31:16 +02:00
committed by Christian Clason
parent a33284c2c0
commit c10e36fc01
27 changed files with 59 additions and 59 deletions

View File

@@ -188,7 +188,7 @@ end
--- Returns available treesitter languages.
function M._complete()
local parsers = vim.api.nvim_get_runtime_file('parser/*', true)
local parsers = api.nvim_get_runtime_file('parser/*', true)
local parser_names_set = {} ---@type table<string, boolean>
for _, parser in ipairs(parsers) do
local parser_name = vim.fn.fnamemodify(parser, ':t:r')