如何获取vim将光标放置在从新行开始的大括号中,即使用|表示光标位置:
class { | }
现在与我的设置它只做到这一点
class { |}
我在我的.vimrc文件中
set autoindent shiftwidth = 2 tabstop = 2 noexpandtab
基本上我只想要一个正常的IDE如何缩进它。
更新:
我找到了如何使用inoremap {{< CR>}< Esc> O
把它放在.vimrc中:
原文链接:https://www.f2er.com/bash/389029.htmlimap <C-Return> <CR><CR><C-o>k<Tab>
假设autoindent和smartindent设置正确,在大括号之间键入Ctrl Return将把光标放在你想要的位置。