2011-12-18 06:11:05 +08:00
|
|
|
" persistent undos - undo after you re-open the file
|
|
|
|
" but this gives warnings under command line vim
|
|
|
|
" use only in macvim
|
2012-01-21 10:01:06 +08:00
|
|
|
if v:version > '702'
|
2011-12-18 06:11:05 +08:00
|
|
|
set undodir=~/.vim/backups
|
|
|
|
set undofile
|
|
|
|
endif
|