summaryrefslogtreecommitdiff
path: root/lua/nvim-treesitter/query.lua
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2020-10-19 22:32:19 +0200
committerStephan Seitz <stephan.lauf@yahoo.de>2020-10-19 22:36:38 +0200
commit4da47d6deaa878b3b0f866a384cfbacb9747854d (patch)
treea199febf62b045aec5b4c80ddf3e6229929f2bdf /lua/nvim-treesitter/query.lua
parentf115d0ebaa7f7331ba2a98411f9cde18822cf7a5 (diff)
Remove textobjects from built_in_query_groups
Diffstat (limited to 'lua/nvim-treesitter/query.lua')
-rw-r--r--lua/nvim-treesitter/query.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/query.lua b/lua/nvim-treesitter/query.lua
index 4b2aec3b..09fdbbdd 100644
--- a/lua/nvim-treesitter/query.lua
+++ b/lua/nvim-treesitter/query.lua
@@ -8,7 +8,7 @@ local M = {}
local query_cache = caching.create_buffer_cache()
-M.built_in_query_groups = {'highlights', 'locals', 'textobjects', 'folds', 'indents'}
+M.built_in_query_groups = {'highlights', 'locals', 'folds', 'indents'}
-- Creates a function that checks whether a given query exists
-- for a specific language.