mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
- add `exposed_state` to expose 'current_node' and 'cursor_pos' for a current buffer to the user. - add `get_buf_state` and `get_node_api` for users. - add documentation about api functions. - remove `node_movement` module which should be done in user side.
415 lines
9.9 KiB
Lua
415 lines
9.9 KiB
Lua
local api = vim.api
|
|
|
|
local queries = require'nvim-treesitter.query'
|
|
local utils = require'nvim-treesitter.utils'
|
|
|
|
local parsers = {}
|
|
|
|
parsers.javascript = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-javascript",
|
|
files = { "src/parser.c", "src/scanner.c" },
|
|
}
|
|
}
|
|
|
|
parsers.c = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-c",
|
|
files = { "src/parser.c" }
|
|
}
|
|
}
|
|
|
|
parsers.cpp = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-cpp",
|
|
files = { "src/parser.c", "src/scanner.cc" }
|
|
}
|
|
}
|
|
|
|
parsers.rust = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-rust",
|
|
files = { "src/parser.c", "src/scanner.c" },
|
|
}
|
|
}
|
|
|
|
parsers.lua = {
|
|
install_info = {
|
|
url = "https://github.com/nvim-treesitter/tree-sitter-lua",
|
|
files = { "src/parser.c", "src/scanner.cc" }
|
|
}
|
|
}
|
|
|
|
parsers.python = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-python",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
parsers.go = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-go",
|
|
files = { "src/parser.c" },
|
|
}
|
|
}
|
|
|
|
parsers.ruby = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-ruby",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
parsers.bash = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-bash",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
parsers.php = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-php",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
parsers.java = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-java",
|
|
files = { "src/parser.c" },
|
|
}
|
|
}
|
|
|
|
parsers.html = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-html",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
parsers.julia = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-julia",
|
|
files = { "src/parser.c", "src/scanner.c" },
|
|
}
|
|
}
|
|
|
|
parsers.json = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-json",
|
|
files = { "src/parser.c" },
|
|
}
|
|
}
|
|
|
|
parsers.css = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-css",
|
|
files = { "src/parser.c", "src/scanner.c" },
|
|
}
|
|
}
|
|
|
|
parsers.ocaml = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-ocaml",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
parsers.swift = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-swift",
|
|
files = { "src/parser.c" },
|
|
}
|
|
}
|
|
|
|
parsers.csharp = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-c-sharp",
|
|
files = { "src/parser.c", "src/scanner.c" },
|
|
}
|
|
}
|
|
|
|
parsers.typescript = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-typescript",
|
|
files = { "src/parser.c", "src/scanner.c" },
|
|
location = "tree-sitter-typescript/typescript"
|
|
}
|
|
}
|
|
|
|
parsers.tsx = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-typescript",
|
|
files = { "src/parser.c", "src/scanner.c" },
|
|
location = "tree-sitter-tsx/tsx"
|
|
}
|
|
}
|
|
|
|
parsers.scala = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-scala",
|
|
files = { "src/parser.c", "src/scanner.c" },
|
|
}
|
|
}
|
|
|
|
parsers.haskell = {
|
|
install_info = {
|
|
url = "https://github.com/tree-sitter/tree-sitter-haskell",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
parsers.markdown = {
|
|
install_info = {
|
|
url = "https://github.com/ikatyang/tree-sitter-markdown",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
parsers.toml = {
|
|
install_info = {
|
|
url = "https://github.com/ikatyang/tree-sitter-toml",
|
|
files = { "src/parser.c", "src/scanner.c" },
|
|
}
|
|
}
|
|
|
|
parsers.vue = {
|
|
install_info = {
|
|
url = "https://github.com/ikatyang/tree-sitter-vue",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
parsers.elm = {
|
|
install_info = {
|
|
url = "https://github.com//razzeee/tree-sitter-elm",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
parsers.yaml = {
|
|
install_info = {
|
|
url = "https://github.com/ikatyang/tree-sitter-yaml",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
parsers.nix = {
|
|
install_info = {
|
|
url = "https://github.com/cstrahan/tree-sitter-nix",
|
|
files = { "src/parser.c", "src/scanner.cc" },
|
|
}
|
|
}
|
|
|
|
-- @enable can be true or false
|
|
-- @disable is a list of languages, only relevant if enable is true
|
|
-- @keymaps list of user mappings for a given module if relevant
|
|
-- @is_supported function which, given a ft, will return true if the ft works on the module
|
|
local config = {
|
|
modules = {
|
|
highlight = {
|
|
enable = false,
|
|
disable = {},
|
|
is_supported = function(ft)
|
|
return queries.get_query(ft, 'highlights') ~= nil
|
|
end
|
|
},
|
|
incremental_selection = {
|
|
enable = false,
|
|
disable = {},
|
|
keymaps = {
|
|
init_selection="gnn",
|
|
node_incremental="grn",
|
|
scope_incremental="grc",
|
|
node_decremental="grm"
|
|
},
|
|
is_supported = function(ft)
|
|
return queries.get_query(ft, 'locals')
|
|
end
|
|
}
|
|
},
|
|
ensure_installed = nil
|
|
}
|
|
|
|
local M = {}
|
|
|
|
local function enable_module(mod, bufnr, ft)
|
|
local bufnr = bufnr or api.nvim_get_current_buf()
|
|
local ft = ft or api.nvim_buf_get_option(bufnr, 'ft')
|
|
if not parsers[ft] or not config.modules[mod] then
|
|
return
|
|
end
|
|
|
|
local loaded_mod = require(string.format("nvim-treesitter.%s", mod))
|
|
loaded_mod.attach(bufnr, ft)
|
|
end
|
|
|
|
local function enable_mod_conf_autocmd(mod, ft)
|
|
if not config.modules[mod] or M.is_enabled(mod, ft) then return end
|
|
|
|
local cmd = string.format("lua require'nvim-treesitter.%s'.attach()", mod)
|
|
api.nvim_command(string.format("autocmd FileType %s %s", ft, cmd))
|
|
for i, parser in pairs(config.modules[mod].disable) do
|
|
if parser == ft then
|
|
table.remove(config.modules[mod].disable, i)
|
|
break
|
|
end
|
|
end
|
|
end
|
|
|
|
local function enable_all(mod, ft)
|
|
if not config.modules[mod] then return end
|
|
|
|
for _, bufnr in pairs(api.nvim_list_bufs()) do
|
|
if not ft or api.nvim_buf_get_option(bufnr, 'ft') == ft then
|
|
enable_module(mod, bufnr, ft)
|
|
end
|
|
end
|
|
if ft then
|
|
if utils.has_parser(ft) then
|
|
enable_mod_conf_autocmd(mod, ft)
|
|
end
|
|
else
|
|
for _, ft in pairs(M.available_parsers()) do
|
|
if utils.has_parser(ft) then
|
|
enable_mod_conf_autocmd(mod, ft)
|
|
end
|
|
end
|
|
end
|
|
config.modules[mod].enable = true
|
|
end
|
|
|
|
local function disable_module(mod, bufnr, ft)
|
|
local bufnr = bufnr or api.nvim_get_current_buf()
|
|
local ft = ft or api.nvim_buf_get_option(bufnr, 'ft')
|
|
if not parsers[ft] or not config.modules[mod] then
|
|
return
|
|
end
|
|
|
|
local loaded_mod = require(string.format("nvim-treesitter.%s", mod))
|
|
loaded_mod.detach(bufnr, ft)
|
|
end
|
|
|
|
local function disable_mod_conf_autocmd(mod, ft)
|
|
if not config.modules[mod] or not M.is_enabled(mod, ft) then return end
|
|
|
|
api.nvim_command(string.format("autocmd! FileType %s", ft))
|
|
table.insert(config.modules[mod].disable, ft)
|
|
end
|
|
|
|
local function disable_all(mod, ft)
|
|
for _, bufnr in pairs(api.nvim_list_bufs()) do
|
|
if not ft or api.nvim_buf_get_option(bufnr, 'ft') == ft then
|
|
disable_module(mod, bufnr, ft)
|
|
end
|
|
end
|
|
if ft then
|
|
disable_mod_conf_autocmd(mod, ft)
|
|
else
|
|
for _, ft in pairs(M.available_parsers()) do
|
|
disable_mod_conf_autocmd(mod, ft)
|
|
end
|
|
config.modules[mod].enable = false
|
|
end
|
|
end
|
|
|
|
M.commands = {
|
|
TSBufEnable = {
|
|
run = enable_module,
|
|
args = {
|
|
"-nargs=1",
|
|
"-complete=custom,v:lua.ts_available_modules"
|
|
},
|
|
description = '`:TSBufEnable module_name` enable a specified module on the current buffer'
|
|
},
|
|
TSBufDisable = {
|
|
run = disable_module,
|
|
args = {
|
|
"-nargs=1",
|
|
"-complete=custom,v:lua.ts_available_modules"
|
|
},
|
|
description = '`:TSBufDisable module_name` disable a specified module on the current buffer'
|
|
},
|
|
TSEnableAll = {
|
|
run = enable_all,
|
|
args = {
|
|
"-nargs=+",
|
|
"-complete=custom,v:lua.ts_available_modules"
|
|
},
|
|
description = '`:TSEnableAll module_name (filetype)` enables a specified module on all buffers. If filetype is specified, enable only for specified filetype'
|
|
},
|
|
TSDisableAll = {
|
|
run = disable_all,
|
|
args = {
|
|
"-nargs=+",
|
|
"-complete=custom,v:lua.ts_available_modules"
|
|
},
|
|
description = '`:TSDisableAll module_name (filetype)` disables a specified module on all buffers. If filetype is specified, disable only for specified filetype'
|
|
},
|
|
}
|
|
|
|
-- @param mod: module (string)
|
|
-- @param ft: filetype (string)
|
|
function M.is_enabled(mod, ft)
|
|
if not M.get_parser_configs()[ft] or not utils.has_parser(ft) then
|
|
return false
|
|
end
|
|
|
|
local module_config = config.modules[mod]
|
|
if not module_config then return false end
|
|
|
|
if not module_config.enable or not module_config.is_supported(ft) then
|
|
return false
|
|
end
|
|
|
|
for _, parser in pairs(module_config.disable) do
|
|
if ft == parser then return false end
|
|
end
|
|
|
|
return true
|
|
end
|
|
|
|
function M.setup(user_data)
|
|
if not user_data then return end
|
|
|
|
for mod, data in pairs(user_data) do
|
|
if config.modules[mod] then
|
|
if type(data.enable) == 'boolean' then
|
|
config.modules[mod].enable = data.enable
|
|
end
|
|
if type(data.disable) == 'table' then
|
|
config.modules[mod].disable = data.disable
|
|
end
|
|
if config.modules[mod].keymaps and type(data.keymaps) == 'table' then
|
|
for f, map in pairs(data.keymaps) do
|
|
if config.modules[mod].keymaps[f] then
|
|
config.modules[mod].keymaps[f] = map
|
|
end
|
|
end
|
|
end
|
|
elseif mod == 'ensure_installed' then
|
|
config.ensure_installed = data
|
|
require'nvim-treesitter.install'.ensure_installed(data)
|
|
end
|
|
end
|
|
end
|
|
|
|
function M.get_parser_configs()
|
|
return parsers
|
|
end
|
|
|
|
function M.available_parsers()
|
|
return vim.tbl_keys(parsers)
|
|
end
|
|
|
|
function M.available_modules()
|
|
return vim.tbl_keys(config.modules)
|
|
end
|
|
|
|
function M.get_module(mod)
|
|
return config.modules[mod]
|
|
end
|
|
|
|
return M
|