From 560e8fb4500ac481601d2511b40f730b4515820e Mon Sep 17 00:00:00 2001 From: kiyan Date: Sun, 6 Feb 2022 15:15:42 +0100 Subject: refacto: expose a function to set custom capture for the higlighter BREAKING: deprecate custom_captures from highlight config. This allows plugin authors to extend the map. It also avoids settings user configuration specific values during the highlighter initialization (SOC). Not sure how much value this brings, and might potentially break a lot of people configurations. This is questionable. --- doc/nvim-treesitter.txt | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/nvim-treesitter.txt b/doc/nvim-treesitter.txt index f3f03bfe8..e7f7932cf 100644 --- a/doc/nvim-treesitter.txt +++ b/doc/nvim-treesitter.txt @@ -71,7 +71,6 @@ MODULES *nvim-treesitter-modules* |nvim-treesitter| provides several functionalities via modules (and submodules), each module makes use of the query files defined for each language, -you can add your own queries too, see |nvim-treesitter-query-extensions|. All modules are disabled by default, and some provide default keymaps. Each module corresponds to an entry in the dictionary passed to the @@ -133,8 +132,6 @@ Supported options: - enable: `true` or `false`. - disable: list of languages. -- custom_captures: A map of user defined capture groups to highlight groups. - See |nvim-treesitter-query-extensions|. - additional_vim_regex_highlighting: `true` or `false`, or a list of languages. Set this to `true` if you depend on 'syntax' being enabled (like for indentation). Using this option may slow down your editor, @@ -154,6 +151,16 @@ Supported options: }, } < + +You can also set custom highlight captures +> + lua <