1 " Use to invoke command on current line while editing _vimrc
2 augroup QuickVimrcCommandInvocation
3 autocmd!
4 autocmd BufEnter _vimrc :noremap
:call ExecuteCurrentLineCommand()
5 autocmd BufEnter _vimrc :inoremap :call ExecuteCurrentLineCommand()i
6 augroup END
7
8 function!
( Read more... )