我在我的Java代碼@Override
註釋,但VIM縮進下一行是這樣的:如何註釋後自動刪除縮進在Java中
@Override
public String toString()
{
//some code
}
我怎樣才能擺脫縮進的?
據我所知,/usr/share/vim/vim73/indent
中的縮進文件java.vim
已經解決了這個問題,但問題仍然存在。下面是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
可能的重複[如何使vim正確縮進java註釋?](http://stackoverflow.com/questions/200932/how-do-i-make-vim-indent-java-annotations-correctly) – Makoto 2013-04-26 15:21:23