How do I fix the indentation of an entire file in Vi?

前端 未结 16 2222
不知归路
不知归路 2020-12-02 03:24

In Vim, what is the command to correct the indentation of all the lines?

Often times I\'ll copy and paste code into a remote terminal and have the whole thing messed

16条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-02 04:00

    =, the indent command can take motions. So, gg to get the start of the file, = to indent, G to the end of the file, gg=G.

提交回复
热议问题