注释掉对mouse的设置,并且设置打开文件时回到上次关闭时的状态
This commit is contained in:
parent
f90e49709e
commit
83ecaa2e35
1 changed files with 7 additions and 7 deletions
|
@ -102,9 +102,9 @@ set hid
|
||||||
set backspace=eol,start,indent
|
set backspace=eol,start,indent
|
||||||
set whichwrap+=<,>,h,l
|
set whichwrap+=<,>,h,l
|
||||||
|
|
||||||
" In many terminal emulators the mouse works just fine, thus enable it.
|
" In many terminal emulators the mouse works just fine, thus enable it. modified by YN
|
||||||
if has('mouse')
|
if has('mouse')
|
||||||
" set mouse=a
|
set mouse= "a
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" Ignore case when searching
|
" Ignore case when searching
|
||||||
|
@ -261,13 +261,13 @@ try
|
||||||
catch
|
catch
|
||||||
endtry
|
endtry
|
||||||
|
|
||||||
" Return to last edit position when opening files (You want this!) opened by YN
|
" Return to last edit position when opening files (You want this!) modified by YN
|
||||||
autocmd BufReadPost *
|
autocmd BufReadPost *
|
||||||
\ if line("'\"") > 0 && line("'\"") <= line("$") |
|
\ if line("'\"") > 0 && line("'\"") <= line("$") |
|
||||||
\ exe "normal! g`\"" |
|
\ exe "normal! g`\"" |
|
||||||
\ endif
|
\ endif
|
||||||
" Remember info about open buffers on close
|
" Remember info about open buffers on close
|
||||||
set viminfo^=%
|
set viminfo^=%
|
||||||
|
|
||||||
|
|
||||||
""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""
|
||||||
|
|
Loading…
Add table
Reference in a new issue