我的 java 代码中有@Override
注释,但是 vim 自动缩进下一行,如下所示:
@Override
public String toString()
{
//some code
}
我怎样才能摆脱缩进?
据我所知,indent 文件已经解决java.vim
了/usr/share/vim/vim73/indent
这个问题,但问题仍然存在。这是中的代码java.vim
:
" If the previous line starts with '@', we should have the same indent as
" the previous one
if getline(lnum) =~ '^\s*@\S\+\s*$'
return indent(lnum)
endif