aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/fortune.vim
blob: 6681312a342051096969e8f76410f4c153b7c0fd (plain) (blame)
1
2
3
4
5
6
7
8
command! -bar Fortune
      \ call fortune#()

augroup fortune
  autocmd!
  autocmd VimEnter *
        \ if !argc() && line2byte('$') == -1 | Fortune | endif
augroup END