在vim中添加perl注释时无法对齐问题的解决方法
时间:2022-03-08 10:17:46|栏目: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")
复制代码 代码如下:
"Only do this part when compiled with support for autocommands.
if has("autocmd")
filetype plugin indent on
else
set autoindent
endif "has("autocmd")
栏 目:perl
下一篇:Perl的经典用法分享
本文标题:在vim中添加perl注释时无法对齐问题的解决方法
本文地址:http://www.codeinn.net/misctech/195579.html