au StdinReadPost * :set buftype=nofile
augroup END
-" Jump to last known cursor position {{{2
-augroup last_loc
+if !has("nvim")
+ " autocmds that already exist in neovim
+ " Jump to last known cursor position {{{2
+ augroup last_loc
+ au!
+ " blacklist certain filetype
+ let blacklist = ['gitcommit']
+ autocmd BufReadPost *
+ \ if index(blacklist, &ft) < 0 && line("'\"") > 1 && line("'\"") <= line("$") |
+ \ exe "normal! g`\"" |
+ \ endif
+ augroup END
+
+ " Check for file modifications automatically {{{2
+ " (current buffer only)
+ " Use :NoAutoChecktime to disable it (uses b:autochecktime)
+ fun! MyAutoCheckTime()
+ " only check timestamp for normal files
+ if &buftype != '' | return | endif
+ if ! exists('b:autochecktime') || b:autochecktime
+ checktime %
+ let b:autochecktime = 1
+ endif
+ endfun
+ augroup MyAutoChecktime
au!
- " blacklist certain filetype
- let blacklist = ['gitcommit']
- autocmd BufReadPost *
- \ if index(blacklist, &ft) < 0 && line("'\"") > 1 && line("'\"") <= line("$") |
- \ exe "normal! g`\"" |
- \ endif
-augroup END
-
-" Check for file modifications automatically {{{2
-" (current buffer only)
-" Use :NoAutoChecktime to disable it (uses b:autochecktime)
-fun! MyAutoCheckTime()
- " only check timestamp for normal files
- if &buftype != '' | return | endif
- if ! exists('b:autochecktime') || b:autochecktime
- checktime %
- let b:autochecktime = 1
- endif
-endfun
-augroup MyAutoChecktime
- au!
- au FocusGained,BufEnter,CursorHold,InsertEnter * call MyAutoCheckTime()
-augroup END
-command! NoAutoChecktime let b:autochecktime=0
-command! ToggleAutoChecktime let b:autochecktime=!get(b:, 'autochecktime', 0) | echom "b:autochecktime:" b:autochecktime
+ au FocusGained,BufEnter,CursorHold,InsertEnter * call MyAutoCheckTime()
+ augroup END
+ command! NoAutoChecktime let b:autochecktime=0
+ command! ToggleAutoChecktime let b:autochecktime=!get(b:, 'autochecktime', 0) | echom "b:autochecktime:" b:autochecktime
+endif
" bindings {{{1