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.
autointenting 整个文本文件(如 .c 文件或 .java 文件)的快捷方式是什么。它应该相当于tabin emacs 但我找不到正确的方法来在线执行此操作。
tab
要重新缩进整个文件可以完成。
gg=G
gg移动到文件的顶部。 =G从光标位置重新缩进到文件末尾。
gg
=G
除了@FDinoff 的建议,您还可以使用 autocmd/au 进行用户定义的文件类型缩进设置。像这样——
au FileType c setl sw=8 ts=8 noet (对于 C);
au FileType python setl sw=4 ts=4 et (for python)
等等..