mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Fix jump to last position
This commit is contained in:
parent
a6ad237b7c
commit
b573f98e14
|
@ -5,11 +5,8 @@
|
||||||
autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
|
autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
|
||||||
|
|
||||||
" Have Vim jump to the last position when reopening a file
|
" Have Vim jump to the last position when reopening a file
|
||||||
autocmd BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\""
|
autocmd BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
||||||
|
|
||||||
" Automatically deletes all trailing whitespace on save
|
" Automatically deletes all trailing whitespace on save
|
||||||
autocmd BufWritePre * %s/\s\+$//e
|
autocmd BufWritePre * %s/\s\+$//e
|
||||||
|
|
||||||
" Vertically center document when entering insert mode
|
|
||||||
"autocmd InsertEnter * norm zz
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue