fix vim autosave

This commit is contained in:
2026-03-30 18:16:45 +09:00
parent 323213e9bf
commit f35b6a2a8f
2 changed files with 1 additions and 1 deletions

View File

@@ -10,7 +10,6 @@ fu! s:autosave_start()
au!
au TextChanged,CursorHold,InsertLeave * sil! update
aug END
echo 'autosave: on'
endf
fu! s:autosave_stop()

1
.vimrc
View File

@@ -35,3 +35,4 @@ call plug#end()
syntax on
filetype plugin indent on
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g`\"" | endif