欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2024-01-20 19:16:52
在.vimrc中加入如下几行,即可解决这个问题。复制代码 代码如下:"only do this part when compiled with support for au...
在.vimrc中加入如下几行,即可解决这个问题。

复制代码 代码如下:

"only do this part when compiled with support for autocommands.
if has("autocmd")
    filetype plugin indent on
else
    set autoindent
endif "has("autocmd")