Add repeatable indent in vim config

This commit is contained in:
Wilfried OLLIVIER 2022-12-21 22:21:15 +01:00
parent 608882e9eb
commit d400c69ec3

View file

@ -11,7 +11,15 @@
{ {
"before": ["<leader>", "c"], "before": ["<leader>", "c"],
"commands": ["editor.action.commentLine", "extension.vim_escape"] "commands": ["editor.action.commentLine", "extension.vim_escape"]
} },
{
"before": [">"],
"commands": ["editor.action.indentLines"]
},
{
"before": ["<"],
"commands": ["editor.action.outdentLines"]
},
], ],
"vim.insertModeKeyBindings": [ "vim.insertModeKeyBindings": [
{ {
@ -127,7 +135,7 @@
{ {
"before": ["<leader>", "b", "c"], "before": ["<leader>", "b", "c"],
"commands": ["copyRelativeFilePath"] "commands": ["copyRelativeFilePath"]
} },
], ],
"vim.leader": ",", "vim.leader": ",",
"vim.handleKeys": { "vim.handleKeys": {