Check file time after entering a buf

This commit is contained in:
Oliver Hartmann 2021-10-13 08:05:33 +02:00 committed by Oliver Hartmann
parent 505a55df18
commit 4086148b38

View File

@ -32,6 +32,9 @@ local autocmds = {
{'BufRead,BufNewFile', 'Jenkinsfile*', 'set filetype=groovy'}; {'BufRead,BufNewFile', 'Jenkinsfile*', 'set filetype=groovy'};
{'BufRead,BufNewFile', '*.manifest', 'set filetype=xml'}; {'BufRead,BufNewFile', '*.manifest', 'set filetype=xml'};
{'BufRead,BufNewFile', 'SConstruct,SConscript', 'set filetype=python'}; {'BufRead,BufNewFile', 'SConstruct,SConscript', 'set filetype=python'};
};
file_changed = {
{'BufEnter,FocusGained', '*', 'checktime'};
} }
} }