Vsc自动调节VscodeVim
使用vscodevim,如何使用自动调整使用=
就像Vim一样?因此,例如:Vsc自动调节VscodeVim
.wrapper-box { // line is out of tab.
.box {
border: 1px solid red;
}
}
在vim中,我可以选择.wrapper-box
然后打=
和行自动对准/自动缩进。如何在VscodeVim中使用这个键绑定?
回答:
`"vim.otherModesKeyBindingsNonRecursive": [ {
"before": [
"="
],
"after": [],
"commands": [
{
"command": "editor.action.reindentlines",
"args": []
}
]
}
]
`
对不起,回答了。
以上是 Vsc自动调节VscodeVim 的全部内容, 来源链接: utcz.com/qa/259593.html