Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何使用 vim 的环绕插件向 c++ 块添加括号,如下所示:
前:
if (condition) bla1 bla2
后:
if (condition) { bla1 bla2 }
但是,如果我希望最终结果是:
最好的方法是什么?
我不知道这是否是最好的方法,但是您可以将光标放在该if行上,然后Shift+J(在正常模式下)将当前行连接到下一行。
if
Shift+J