Files
dotfiles/.config/vim/vimrc.d/70-functions.vim
Julian Prein 947a939f67 vim: Move CycleSpellLang into keys.vim
See ba3a54fc4 ("vim: Move numbertoggle autocmd into settings.vim").
2022-08-30 19:52:23 +02:00

12 lines
379 B
VimL

" Functions """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Check time every second to read file changes.
if (exists('+autoread') && &autoread)
function! CheckTime(timer)
" NOTE: silent the checktime call as it is an invalid command in the
" command line window
silent! checktime
endfunc
call timer_start(1000, 'CheckTime', {'repeat': -1})
endif