From b6101203609943082241adc524374600583727e9 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 4 Nov 2019 18:03:11 +0100 Subject: [PATCH] [UPDATE][VIM] Better description for misc mappings --- vim/.vim/after/plugin/mappings/misc.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vim/.vim/after/plugin/mappings/misc.vim b/vim/.vim/after/plugin/mappings/misc.vim index bb344f1..6a34068 100644 --- a/vim/.vim/after/plugin/mappings/misc.vim +++ b/vim/.vim/after/plugin/mappings/misc.vim @@ -1,9 +1,11 @@ " Yank until the end of line with Y, to be more consistent with D and C nnoremap Y y$ -" Mappings for working with vimrc +" Edit my vimrc in the current buffer nnoremap ev :edit $MYVIMRC +" Source my vimrc nnoremap es :source $MYVIMRC +" Source the current buffer nnoremap et :source % " Easier escape from insert mode