diff --git a/vimrcs/basic.vim b/vimrcs/basic.vim index f81f3e13..29a92337 100644 --- a/vimrcs/basic.vim +++ b/vimrcs/basic.vim @@ -104,7 +104,7 @@ set whichwrap+=<,>,h,l " In many terminal emulators the mouse works just fine, thus enable it. if has('mouse') - set mouse=a +" set mouse=a endif " Ignore case when searching @@ -261,13 +261,13 @@ try catch endtry -" Return to last edit position when opening files (You want this!) -" autocmd BufReadPost * -" \ if line("'\"") > 0 && line("'\"") <= line("$") | -" \ exe "normal! g`\"" | -" \ endif +" Return to last edit position when opening files (You want this!) opened by YN + autocmd BufReadPost * + \ if line("'\"") > 0 && line("'\"") <= line("$") | + \ exe "normal! g`\"" | + \ endif " Remember info about open buffers on close -" set viminfo^=% + set viminfo^=% """"""""""""""""""""""""""""""