When switching windows, vim Automatic command is <c-w><up>, <C-W><Down>,<C-W><Left>,<C-W><Right> Need to press two times keyboard
Exvim use of the shift+ arrow keys can only press once, it is more useful
"Map ctrl-tab to switch window
Nnoremap <S-Up> <C-W><Up>
Nnoremap <S-Down> <C-W><Down>
Nnoremap <S-Left> <C-W><Left>
Nnoremap <S-Right> <C-W><Right>
Windows version Exvim full package management plug-in, if there is no network connection,
The configuration file. This is what VIMRC wrote.
"Load. Vimrc.plugins &. Vimrc.plugins.local
if exists (' G:exvim_custom_path ')
Let vimrc_plugins_path = G:exvim_custom_path. ' /.vimrc.plugins '
Let Vimrc_plugins_local_path = G:exvim_custom_path. ' /.vimrc.plugins.local '
Else
Let Vimrc_plugins_path = ' ~/.vimrc.plugins '
Let Vimrc_plugins_local_path = ' ~/.vimrc.plugins.local '
endif
Loaded from. Vimrc.plugins, I add a few lines directly to the file.
Plugin ' Vim-airline '
Plugin ' A.vim '
After overloading the Exvim, it seems that these plugins can also load properly.
Vim Common commands