aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/fortune.vim
blob: 825ed9f7c2dae0e5b15028ebf117776281d2a347 (plain) (blame)
1
2
3
4
5
6
7
command! -bar Fortune
      \ call fortune#()
augroup fortune
  autocmd!
  autocmd VimEnter *
        \ if !argc() && line2byte('$') == -1 | Fortune | endif
augroup END