diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2020-07-14 22:29:15 +0200 |
|---|---|---|
| committer | Thomas Vigouroux <39092278+vigoux@users.noreply.github.com> | 2020-07-14 22:34:43 +0200 |
| commit | 01c9f823f6bab550aeed777d271fa5473fda93b5 (patch) | |
| tree | 0286bda3d26197037256d01c83fec8af504fa7ee | |
| parent | Update documentation for new modules 'refactor'/'textobjects' (diff) | |
| download | nvim-treesitter-01c9f823f6bab550aeed777d271fa5473fda93b5.tar nvim-treesitter-01c9f823f6bab550aeed777d271fa5473fda93b5.tar.gz nvim-treesitter-01c9f823f6bab550aeed777d271fa5473fda93b5.tar.bz2 nvim-treesitter-01c9f823f6bab550aeed777d271fa5473fda93b5.tar.lz nvim-treesitter-01c9f823f6bab550aeed777d271fa5473fda93b5.tar.xz nvim-treesitter-01c9f823f6bab550aeed777d271fa5473fda93b5.tar.zst nvim-treesitter-01c9f823f6bab550aeed777d271fa5473fda93b5.zip | |
Also check textobjects queries in check-queries.lua
| -rwxr-xr-x | scripts/check-queries.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check-queries.lua b/scripts/check-queries.lua index c5baf6f24..3fff461d3 100755 --- a/scripts/check-queries.lua +++ b/scripts/check-queries.lua @@ -2,7 +2,7 @@ local function do_check() local parsers = require 'nvim-treesitter.parsers'.available_parsers() local queries = require 'nvim-treesitter.query' - local query_types = {'highlights', 'locals'} + local query_types = {'highlights', 'locals', 'textobjects'} for _, lang in pairs(parsers) do for _, query_type in pairs(query_types) do |
