您现在的位置是:网站首页> 编程资料编程资料

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

2023-05-26 368人已围观

简介 在vim中添加perl注释时无法对齐问题的解决方法_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")

-六神源码网