. doesn't always repeat the last indent for me. btd's keybindings got my VSCode stuck moving the cursor up.
Adding this to settings.json works as a charm using tab/shift+tab whenever you have a selection:
"vim.visualModeKeyBindings": [
{
"before": ["<tab>"],
"after": [">","g","v"]
},
{
"before": ["<S-tab>"],
"after": ["<","g","v"]
}
],
(posted by himanshugoswamiii at https://github.com/VSCodeVim/Vim/discussions/7622)
. doesn't always repeat the last indent for me. Adding this to settings.json works as a charm using tab/shift+tab whenever you have a selection:
"vim.visualModeKeyBindings": [
{
"before": ["<tab>"],
"after": [">","g","v"]
},
{
"before": ["<S-tab>"],
"after": ["<","g","v"]
}
],
(posted by himanshugoswamiii at https://github.com/VSCodeVim/Vim/discussions/7622)