perl

关注公众号 jb51net

关闭
首页 > 脚本专栏 > perl > vim中添加perl注释时无法对齐

在vim中添加perl注释时无法对齐问题的解决方法

作者:

在使用vim编辑perl脚本时,每当输入#号时,#号都会跑到行首问题,需要的朋友可以参考下
在.vimrc中加入如下几行,即可解决这个问题。

复制代码 代码如下:

"Only do this part when compiled with support for autocommands.
if has("autocmd")
    filetype plugin indent on
else
    set autoindent
endif "has("autocmd")
您可能感兴趣的文章:
阅读全文