diff options
author | Josh Rahm <rahm@google.com> | 2024-03-09 19:06:09 +0000 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2024-03-09 19:06:09 +0000 |
commit | fdb2f5d6d251f12f58e66d74d35aef2cdf3d5ad0 (patch) | |
tree | 1bc465328c9e323262a179d673fb5f26aadba689 /lua/treesitter-textobjects-setup.lua | |
parent | 737c49be10204e808c0129d93f8533b424ae4b87 (diff) | |
download | config.vim-fdb2f5d6d251f12f58e66d74d35aef2cdf3d5ad0.tar.gz config.vim-fdb2f5d6d251f12f58e66d74d35aef2cdf3d5ad0.tar.bz2 config.vim-fdb2f5d6d251f12f58e66d74d35aef2cdf3d5ad0.zip |
Yet more ricing.
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') -- |