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 = { incremental_selection = {
enable = true, enable = true,
keymaps = { keymaps = {
init_selection = '<c-space>', init_selection = '<C-space>',
node_incremental = '<c-space>', node_incremental = '<C-space>',
scope_incremental = '<c-s>', scope_incremental = '<C-s>',
node_decremental = '<c-backspace>', node_decremental = '<C-backspace>',
}, },
}, },
textobjects = { textobjects = {