在vim中添加perl注释时无法对齐问题的解决方法
(编辑:jimmy 日期: 2024/11/16 浏览:3 次 )
在.vimrc中加入如下几行,即可解决这个问题。
复制代码 代码如下:
"Only do this part when compiled with support for autocommands.
if has("autocmd")
filetype plugin indent on
else
set autoindent
endif "has("autocmd")
复制代码 代码如下:
"Only do this part when compiled with support for autocommands.
if has("autocmd")
filetype plugin indent on
else
set autoindent
endif "has("autocmd")
下一篇:perl文件读取的几种处理方式小结