mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 07:40:05 +08:00
50 lines
1.2 KiB
Lua
50 lines
1.2 KiB
Lua
local configs = require "nvim-treesitter.configs"
|
|
|
|
local M = {}
|
|
|
|
---@param config TSModule
|
|
---@param lang string
|
|
---@return boolean
|
|
local function should_enable_vim_regex(config, lang)
|
|
local additional_hl = config.additional_vim_regex_highlighting
|
|
local is_table = type(additional_hl) == "table"
|
|
|
|
---@diagnostic disable-next-line: param-type-mismatch
|
|
return additional_hl and (not is_table or vim.tbl_contains(additional_hl, lang))
|
|
end
|
|
|
|
---@param bufnr integer
|
|
---@param lang string
|
|
function M.attach(bufnr, lang)
|
|
local config = configs.get_module "highlight"
|
|
vim.treesitter.start(bufnr, lang)
|
|
if config and should_enable_vim_regex(config, lang) then
|
|
vim.bo[bufnr].syntax = "ON"
|
|
end
|
|
end
|
|
|
|
---@param bufnr integer
|
|
function M.detach(bufnr)
|
|
vim.treesitter.stop(bufnr)
|
|
end
|
|
|
|
---@deprecated
|
|
function M.start(...)
|
|
vim.notify(
|
|
"`nvim-treesitter.highlight.start` is deprecated: use `nvim-treesitter.highlight.attach` or `vim.treesitter.start`",
|
|
vim.log.levels.WARN
|
|
)
|
|
M.attach(...)
|
|
end
|
|
|
|
---@deprecated
|
|
function M.stop(...)
|
|
vim.notify(
|
|
"`nvim-treesitter.highlight.stop` is deprecated: use `nvim-treesitter.highlight.detach` or `vim.treesitter.stop`",
|
|
vim.log.levels.WARN
|
|
)
|
|
M.detach(...)
|
|
end
|
|
|
|
return M
|