small cosmetic changes

This commit is contained in:
Marco Hinz 2013-03-13 19:23:47 +01:00
parent d653651cc0
commit 2b05c454de

View File

@ -104,17 +104,21 @@ sign define SignifyPlaceholder text=~ texthl=SignifyChange linehl=none
" Initial stuff {{{1 " Initial stuff {{{1
augroup signify augroup signify
autocmd! autocmd!
if exists('g:signify_cursorhold_normal') && (g:signify_cursorhold_normal == 1) if exists('g:signify_cursorhold_normal') && (g:signify_cursorhold_normal == 1)
autocmd CursorHold * write | call s:start(resolve(expand('<afile>:p'))) autocmd CursorHold * write | call s:start(resolve(expand('<afile>:p')))
endif endif
if exists('g:signify_cursorhold_insert') && (g:signify_cursorhold_insert == 1) if exists('g:signify_cursorhold_insert') && (g:signify_cursorhold_insert == 1)
autocmd CursorHoldI * write | call s:start(resolve(expand('<afile>:p'))) autocmd CursorHoldI * write | call s:start(resolve(expand('<afile>:p')))
endif endif
autocmd ColorScheme * call s:colors_set()
autocmd BufWritePost,BufEnter * call s:start(resolve(expand('<afile>:p'))) if !has('gui_win32')
if !(has("gui_win32"))
autocmd FocusGained * call s:start(resolve(expand('<afile>:p'))) autocmd FocusGained * call s:start(resolve(expand('<afile>:p')))
endif endif
autocmd ColorScheme * call s:colors_set()
autocmd BufWritePost,BufEnter * call s:start(resolve(expand('<afile>:p')))
augroup END augroup END
com! -nargs=0 -bar SignifyToggle call s:toggle_signify() com! -nargs=0 -bar SignifyToggle call s:toggle_signify()