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 从项目根目录缩进整个代码库?我知道缩进一个完整的文件,gg=G在正常模式下可以完成这项工作。但是有没有办法用一个命令来缩进整个代码库?
gg=G
首先将文件存储在 args 中。使用查找所有相关文件的查找命令
:args `find -name "*.c"`
然后对所有参数执行任何 vim 命令:
:argdo normal! gg=G | update