mirror of
https://github.com/chenasraf/nvim-treesitter.git
synced 2026-05-17 17:38:02 +00:00
Problem: People complain about noisy `install()`. Solution: Gate operation summary behind `summary` install option (default false, set to true for interactive `:TS*` commands).
76 lines
1.8 KiB
Lua
76 lines
1.8 KiB
Lua
if vim.g.loaded_nvim_treesitter then
|
|
return
|
|
end
|
|
vim.g.loaded_nvim_treesitter = true
|
|
|
|
local api = vim.api
|
|
|
|
local function complete_available_parsers(arglead)
|
|
return vim.tbl_filter(
|
|
--- @param v string
|
|
function(v)
|
|
return v:find(arglead) ~= nil
|
|
end,
|
|
require('nvim-treesitter.config').get_available()
|
|
)
|
|
end
|
|
|
|
local function complete_installed_parsers(arglead)
|
|
return vim.tbl_filter(
|
|
--- @param v string
|
|
function(v)
|
|
return v:find(arglead) ~= nil
|
|
end,
|
|
require('nvim-treesitter.config').get_installed()
|
|
)
|
|
end
|
|
|
|
-- create user commands
|
|
api.nvim_create_user_command('TSInstall', function(args)
|
|
require('nvim-treesitter.install').install(args.fargs, { force = args.bang, summary = true })
|
|
end, {
|
|
nargs = '+',
|
|
bang = true,
|
|
bar = true,
|
|
complete = complete_available_parsers,
|
|
desc = 'Install treesitter parsers',
|
|
})
|
|
|
|
api.nvim_create_user_command('TSInstallFromGrammar', function(args)
|
|
require('nvim-treesitter.install').install(args.fargs, {
|
|
generate = true,
|
|
summary = true,
|
|
force = args.bang,
|
|
})
|
|
end, {
|
|
nargs = '+',
|
|
bang = true,
|
|
bar = true,
|
|
complete = complete_available_parsers,
|
|
desc = 'Install treesitter parsers from grammar',
|
|
})
|
|
|
|
api.nvim_create_user_command('TSUpdate', function(args)
|
|
require('nvim-treesitter.install').update(args.fargs, { summary = true })
|
|
end, {
|
|
nargs = '*',
|
|
bar = true,
|
|
complete = complete_installed_parsers,
|
|
desc = 'Update installed treesitter parsers',
|
|
})
|
|
|
|
api.nvim_create_user_command('TSUninstall', function(args)
|
|
require('nvim-treesitter.install').uninstall(args.fargs, { summary = true })
|
|
end, {
|
|
nargs = '+',
|
|
bar = true,
|
|
complete = complete_installed_parsers,
|
|
desc = 'Uninstall treesitter parsers',
|
|
})
|
|
|
|
api.nvim_create_user_command('TSLog', function()
|
|
require('nvim-treesitter.log').show()
|
|
end, {
|
|
desc = 'View log messages',
|
|
})
|