在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")
复制代码 代码如下:
"only do this part when compiled with support for autocommands.
if has("autocmd")
filetype plugin indent on
else
set autoindent
endif "has("autocmd")
上一篇: Python基础 - 深复制、浅复制