vim: 如何使粘贴到vim的代码排列整齐?

来源:互联网 发布:win7部分软件无法安装 编辑:程序博客网 时间:2024/05/07 00:06
这个解决了我2个问题 在注释行回车或插入到下一行时 也是注释的 这个问题找了很久没弄好 没想到弄了这个后就好了 真是人品大大的好啊!!!!
原文链接 http://linux.172baby.com/posts/125843.html

随笔 linuxman 发表于2004-12-28 00:21
粘贴到vim的代码,尤其是从WEB粘贴过来的代码,经常是一片混乱,看起来向右不断缩进造成的。

解决的办法是:

1 粘贴完毕使用命令:

gg=G


上面这个命令的意义是(摘自http://vimdoc.sourceforge.net/cgi-bin/vimfaq2html3.pl):
14.6. How do I format/indent an entire file?

You can format/indent an entire file using the gg=G command, where

gg - Goto the beginning of the file
= - apply indentation
G - till end of file

For more information, read

:help gg
:help =
:help G
:help ''formatprg''
:help C-indenting

2 一般的vim都默认设置为set nopaste。在粘贴前设置:
set paste使得vim进入粘贴模式,则粘贴过来的内容能够保持原来的格式。

推荐使用方法2。
0 0
原创粉丝点击