mirror of
https://github.com/neovim/neovim
synced 2025-07-15 16:51:49 +00:00
Problem: Installing treesitter parser is hard (harder than climbing to heaven). Solution: Add optional support for wasm parsers with `wasmtime`. Notes: * Needs to be enabled by setting `ENABLE_WASMTIME` for tree-sitter and Neovim. Build with `make CMAKE_EXTRA_FLAGS=-DENABLE_WASMTIME=ON DEPS_CMAKE_FLAGS=-DENABLE_WASMTIME=ON` * Adds optional Rust (obviously) and C11 dependencies. * Wasmtime comes with a lot of features that can negatively affect Neovim performance due to library and symbol table size. Make sure to build with minimal features and full LTO. * To reduce re-compilation times, install `sccache` and build with `RUSTC_WRAPPER=<path/to/sccache> make ...`
164 lines
3.9 KiB
Lua
164 lines
3.9 KiB
Lua
local api = vim.api
|
|
|
|
local M = {}
|
|
|
|
---@type table<string,string>
|
|
local ft_to_lang = {
|
|
help = 'vimdoc',
|
|
}
|
|
|
|
--- Get the filetypes associated with the parser named {lang}.
|
|
--- @param lang string Name of parser
|
|
--- @return string[] filetypes
|
|
function M.get_filetypes(lang)
|
|
local r = {} ---@type string[]
|
|
for ft, p in pairs(ft_to_lang) do
|
|
if p == lang then
|
|
r[#r + 1] = ft
|
|
end
|
|
end
|
|
return r
|
|
end
|
|
|
|
--- @param filetype string
|
|
--- @return string|nil
|
|
function M.get_lang(filetype)
|
|
if filetype == '' then
|
|
return
|
|
end
|
|
if ft_to_lang[filetype] then
|
|
return ft_to_lang[filetype]
|
|
end
|
|
-- support subfiletypes like html.glimmer
|
|
filetype = vim.split(filetype, '.', { plain = true })[1]
|
|
return ft_to_lang[filetype]
|
|
end
|
|
|
|
---@deprecated
|
|
function M.require_language(lang, path, silent, symbol_name)
|
|
vim.deprecate(
|
|
'vim.treesitter.language.require_language()',
|
|
'vim.treesitter.language.add()',
|
|
'0.12'
|
|
)
|
|
local opts = {
|
|
silent = silent,
|
|
path = path,
|
|
symbol_name = symbol_name,
|
|
}
|
|
|
|
if silent then
|
|
local installed = pcall(M.add, lang, opts)
|
|
return installed
|
|
end
|
|
|
|
M.add(lang, opts)
|
|
return true
|
|
end
|
|
|
|
---@class vim.treesitter.language.add.Opts
|
|
---@inlinedoc
|
|
---
|
|
---Default filetype the parser should be associated with.
|
|
---(Default: {lang})
|
|
---@field filetype? string|string[]
|
|
---
|
|
---Optional path the parser is located at
|
|
---@field path? string
|
|
---
|
|
---Internal symbol name for the language to load
|
|
---@field symbol_name? string
|
|
|
|
--- Load parser with name {lang}
|
|
---
|
|
--- Parsers are searched in the `parser` runtime directory, or the provided {path}
|
|
---
|
|
---@param lang string Name of the parser (alphanumerical and `_` only)
|
|
---@param opts? vim.treesitter.language.add.Opts Options:
|
|
function M.add(lang, opts)
|
|
opts = opts or {}
|
|
local path = opts.path
|
|
local filetype = opts.filetype or lang
|
|
local symbol_name = opts.symbol_name
|
|
|
|
vim.validate({
|
|
lang = { lang, 'string' },
|
|
path = { path, 'string', true },
|
|
symbol_name = { symbol_name, 'string', true },
|
|
filetype = { filetype, { 'string', 'table' }, true },
|
|
})
|
|
|
|
-- parser names are assumed to be lowercase (consistent behavior on case-insensitive file systems)
|
|
lang = lang:lower()
|
|
|
|
if vim._ts_has_language(lang) then
|
|
M.register(lang, filetype)
|
|
return
|
|
end
|
|
|
|
if path == nil then
|
|
if not (lang and lang:match('[%w_]+') == lang) then
|
|
error("'" .. lang .. "' is not a valid language name")
|
|
end
|
|
|
|
local fname = 'parser/' .. lang .. '.*'
|
|
local paths = api.nvim_get_runtime_file(fname, false)
|
|
if #paths == 0 then
|
|
error("no parser for '" .. lang .. "' language, see :help treesitter-parsers")
|
|
end
|
|
path = paths[1]
|
|
end
|
|
|
|
if vim.endswith(path, '.wasm') then
|
|
if not vim._ts_add_language_from_wasm then
|
|
error(string.format("Unable to load wasm parser '%s': not built with ENABLE_WASMTIME ", path))
|
|
end
|
|
vim._ts_add_language_from_wasm(path, lang)
|
|
else
|
|
vim._ts_add_language_from_object(path, lang, symbol_name)
|
|
end
|
|
M.register(lang, filetype)
|
|
end
|
|
|
|
--- @param x string|string[]
|
|
--- @return string[]
|
|
local function ensure_list(x)
|
|
if type(x) == 'table' then
|
|
return x
|
|
end
|
|
return { x }
|
|
end
|
|
|
|
--- Register a parser named {lang} to be used for {filetype}(s).
|
|
---
|
|
--- Note: this adds or overrides the mapping for {filetype}, any existing mappings from other
|
|
--- filetypes to {lang} will be preserved.
|
|
---
|
|
--- @param lang string Name of parser
|
|
--- @param filetype string|string[] Filetype(s) to associate with lang
|
|
function M.register(lang, filetype)
|
|
vim.validate({
|
|
lang = { lang, 'string' },
|
|
filetype = { filetype, { 'string', 'table' } },
|
|
})
|
|
|
|
for _, f in ipairs(ensure_list(filetype)) do
|
|
if f ~= '' then
|
|
ft_to_lang[f] = lang
|
|
end
|
|
end
|
|
end
|
|
|
|
--- Inspects the provided language.
|
|
---
|
|
--- Inspecting provides some useful information on the language like node names, ...
|
|
---
|
|
---@param lang string Language
|
|
---@return table
|
|
function M.inspect(lang)
|
|
M.add(lang)
|
|
return vim._ts_inspect_language(lang)
|
|
end
|
|
|
|
return M
|