summaryrefslogtreecommitdiff
path: root/lua/nvim-treesitter/configs.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim-treesitter/configs.lua')
-rw-r--r--lua/nvim-treesitter/configs.lua36
1 files changed, 28 insertions, 8 deletions
diff --git a/lua/nvim-treesitter/configs.lua b/lua/nvim-treesitter/configs.lua
index 02a636df..ba4ae3f8 100644
--- a/lua/nvim-treesitter/configs.lua
+++ b/lua/nvim-treesitter/configs.lua
@@ -7,7 +7,7 @@ local utils = require'nvim-treesitter.utils'
local M = {}
local function has_some_textobject_mapping(lang)
- for _, v in pairs(M.get_module('textobjects').keymaps) do
+ for _, v in pairs(M.get_module('textobjects.select').keymaps) do
if type(v) == 'table' then
if v[lang] then
return true
@@ -79,13 +79,33 @@ local builtin_modules = {
}
},
textobjects = {
- module_path = 'nvim-treesitter.textobjects',
- enable = false,
- disable = {},
- is_supported = function(lang)
- return has_some_textobject_mapping(lang) or queries.has_textobjects(lang)
- end,
- keymaps = {}
+ select = {
+ module_path = 'nvim-treesitter.textobjects.select',
+ enable = false,
+ disable = {},
+ is_supported = function(lang)
+ return has_some_textobject_mapping(lang) or queries.has_textobjects(lang)
+ end,
+ keymaps = {},
+ },
+ move = {
+ module_path = 'nvim-treesitter.textobjects.move',
+ enable = false,
+ disable = {},
+ is_supported = queries.has_textobjects,
+ goto_next_start = {},
+ goto_next_end = {},
+ goto_previous_start = {},
+ goto_previous_end = {},
+ },
+ swap = {
+ module_path = 'nvim-treesitter.textobjects.swap',
+ enable = false,
+ disable = {},
+ is_supported = queries.has_textobjects,
+ swap_next = {},
+ swap_previous = {},
+ },
}
}