From 426bce4fdd6ebe285165d3886a180242f2009983 Mon Sep 17 00:00:00 2001 From: Maksim Pecherskiy Date: Thu, 26 Dec 2013 15:55:29 -0600 Subject: [PATCH] Updating extended.vim/ --- vimrcs/extended.vim | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/vimrcs/extended.vim b/vimrcs/extended.vim index 6373d424..3b452d68 100644 --- a/vimrcs/extended.vim +++ b/vimrcs/extended.vim @@ -1,5 +1,5 @@ """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -" Important: +" Important: " This requries that you install https://github.com/amix/vimrc ! " """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -42,7 +42,7 @@ autocmd! bufwritepost vimrc source ~/.vim_runtime/my_configs.vim """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -" => Turn persistent undo on +" => Turn persistent undo on " means that you can undo even when you close a buffer/VIM """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" try @@ -62,7 +62,7 @@ cno $j e ./ cno $c e eCurrentFileDir("e") " $q is super useful when browsing on the command line -" it deletes everything until the last slash +" it deletes everything until the last slash cno $q eDeleteTillSlash() " Bash like keys for the command line @@ -90,13 +90,13 @@ vnoremap $q `>a'` vnoremap $e `>a"` " Map auto complete of (, ", ', [ -inoremap $1 ()i -inoremap $2 []i -inoremap $3 {}i -inoremap $4 {o}O -inoremap $q ''i -inoremap $e ""i -inoremap $t <>i +"inoremap $1 ()i +"inoremap $2 []i +"inoremap $3 {}i +"inoremap $4 {o}O +"inoremap $q ''i +"inoremap $e ""i +"inoremap $t <>i """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -130,7 +130,7 @@ func! DeleteTillSlash() else let g:cmd_edited = substitute(g:cmd, "\\(.*\[/\]\\).*/", "\\1", "") endif - endif + endif return g:cmd_edited endfunc