This plugin will open a block after you input left bracket and hit enter.
{<Enter>
will become like
{
<cursor here>
}
This key mapping now only for visual mode. Because delimitMate has a good support for now.
The key mapping is come from c.vim
Insert this into your vimrc
Plugin 'DanSnow/Block.vim'
And type
:PluginInstall
You can use this to add more filetype that disable this keymapping at your vimrc.
call BlockIgnoreFiletype('<filetype>')
DanSnow