Aquí está el código que extraje de vim-startify
; Las partes clave están creando un nuevo búfer en el VimEnter
autocmd, poniendo algo de texto en eso, y luego mapeando i
para iniciar un nuevo búfer y luego ir al modo de inserción.
Puse lo siguiente en un pequeño complemento que agrega algunas configuraciones y tal, pero el concepto básico es exactamente el mismo.
fun! Start()
" Don't run if: we have commandline arguments, we don't have an empty
" buffer, if we've not invoked as vim or gvim, or if we'e start in insert mode
if argc() || line2byte('$') != -1 || v:progname !~? '^[-gmnq]\=vim\=x\=\%[\.exe]$' || &insertmode
return
endif
" Start a new buffer ...
enew
" ... and set some options for it
setlocal
\ bufhidden=wipe
\ buftype=nofile
\ nobuflisted
\ nocursorcolumn
\ nocursorline
\ nolist
\ nonumber
\ noswapfile
\ norelativenumber
" Now we can just write to the buffer, whatever you want.
call append('$', "")
for line in split(system('fortune -a'), '\n')
call append('$', ' ' . l:line)
endfor
" No modifications to this buffer
setlocal nomodifiable nomodified
" When we go to insert mode start a new buffer, and start insert
nnoremap <buffer><silent> e :enew<CR>
nnoremap <buffer><silent> i :enew <bar> startinsert<CR>
nnoremap <buffer><silent> o :enew <bar> startinsert<CR>
endfun
" Run after "doing all the startup stuff"
autocmd VimEnter * call Start()
insane_in_the_membrane
y cómo eso tiene algo que ver remotamente con su código real. ¡Porque esa persona es brillante y este es el mejor nombre de función que he visto hoy! : P