diff options
Diffstat (limited to 'lua/treesitter-textobjects-setup.lua')
-rw-r--r-- | lua/treesitter-textobjects-setup.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/treesitter-textobjects-setup.lua b/lua/treesitter-textobjects-setup.lua index f58e5bd..4296857 100644 --- a/lua/treesitter-textobjects-setup.lua +++ b/lua/treesitter-textobjects-setup.lua @@ -12,14 +12,14 @@ require'nvim-treesitter.configs'.setup { ["im"] = "@function.inner", ["af"] = "@function.outer", ["if"] = "@function.inner", - ["ac"] = "@class.outer", + ["aC"] = "@class.outer", ["aa"] = "@parameter.outer", ["ia"] = "@parameter.inner", ["iq"] = "@block.inner", ["aq"] = "@block.outer", -- You can optionally set descriptions to the mappings (used in the desc parameter of -- nvim_buf_set_keymap) which plugins like which-key display - ["ic"] = { query = "@class.inner", desc = "Select inner part of a class region" }, + ["iC"] = { query = "@class.inner", desc = "Select inner part of a class region" }, }, -- You can choose the select mode (default is charwise 'v') -- |