fix keymap for treesitter incremental selection. 'c' to 'C' for CTRL

This commit is contained in:
rosstimo 2022-12-25 14:41:43 -07:00
parent 39a941c385
commit 256e076952
1 changed files with 4 additions and 4 deletions

View File

@ -228,10 +228,10 @@ require('nvim-treesitter.configs').setup {
incremental_selection = {
enable = true,
keymaps = {
init_selection = '<c-space>',
node_incremental = '<c-space>',
scope_incremental = '<c-s>',
node_decremental = '<c-backspace>',
init_selection = '<C-space>',
node_incremental = '<C-space>',
scope_incremental = '<C-s>',
node_decremental = '<C-backspace>',
},
},
textobjects = {