Doc: improve "on tab" example
This commit is contained in:
parent
888290d39a
commit
06f2f59d4f
|
@ -1097,9 +1097,11 @@ Run Startify for each new tab!~
|
|||
if has('nvim')
|
||||
autocmd TabNewEntered * Startify
|
||||
else
|
||||
autocmd VimEnter * let t:startify_new_tab = 1
|
||||
autocmd BufEnter *
|
||||
\ if !exists('t:startify_new_tab') && empty(expand('%')) |
|
||||
autocmd BufWinEnter *
|
||||
\ if !exists('t:startify_new_tab')
|
||||
\ && empty(expand('%'))
|
||||
\ && empty(&l:buftype)
|
||||
\ && &l:modifiable |
|
||||
\ let t:startify_new_tab = 1 |
|
||||
\ Startify |
|
||||
\ endif
|
||||
|
|
Loading…
Reference in a new issue