mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-17 19:00:02 -04:00
Fix example mappings
This commit is contained in:
parent
d73988a907
commit
53284f311a
2 changed files with 2 additions and 2 deletions
|
|
@ -99,7 +99,7 @@ require'nvim-treesitter.configs'.setup {
|
||||||
init_selection = 'gnn', -- maps in normal mode to init the node/scope selection
|
init_selection = 'gnn', -- maps in normal mode to init the node/scope selection
|
||||||
node_incremental = "grn", -- increment to the upper named parent
|
node_incremental = "grn", -- increment to the upper named parent
|
||||||
scope_incremental = "grc", -- increment to the upper scope (as defined in locals.scm)
|
scope_incremental = "grc", -- increment to the upper scope (as defined in locals.scm)
|
||||||
scope_decremental = "grm", -- decrement to the previous scope
|
node_decremental = "grm", -- decrement to the previous node
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ensure_installed = 'all' -- one of 'all', 'language', or a list of languages
|
ensure_installed = 'all' -- one of 'all', 'language', or a list of languages
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ By default, everything is disabled. To enable support for features, in your `ini
|
||||||
init_selection = 'gnn', -- maps in normal mode to init the node/scope selection
|
init_selection = 'gnn', -- maps in normal mode to init the node/scope selection
|
||||||
node_incremental = "grn", -- increment to the upper named parent
|
node_incremental = "grn", -- increment to the upper named parent
|
||||||
scope_incremental = "grc", -- increment to the upper scope (as defined in locals.scm)
|
scope_incremental = "grc", -- increment to the upper scope (as defined in locals.scm)
|
||||||
scope_decremental = "grm", -- decrement to the previous scope
|
node_decremental = "grm", -- decrement to the previous node
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ensure_installed = 'all' -- one of 'all', 'language', or a list of languages
|
ensure_installed = 'all' -- one of 'all', 'language', or a list of languages
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue