我是 Vim 新手,现在我只需要一个非常简单的东西:
(1)public class Foo <open brace><hit ENTER>
or
(2)public class Foo <hit ENTER><open brace><hit ENTER>
得到这个
(1)public class Foo{
|cursor here
}
或者
(2)public class Foo
{
|cursor here
}
我的 .vimrc 是:
set smartindent
set shiftwidth=4
set number
inoremap { {<CR>}<Left>
感谢任何帮助,谢谢!