commit
fd0d93476a
|
@ -90,8 +90,7 @@ function! startify#insane_in_the_membrane() abort
|
||||||
execute 'nnoremap <buffer><silent> '. g:startify_empty_buffer_key .' :enew<cr>'
|
execute 'nnoremap <buffer><silent> '. g:startify_empty_buffer_key .' :enew<cr>'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
autocmd! startify *
|
autocmd startify CursorMoved <buffer> call s:set_cursor()
|
||||||
autocmd startify CursorMoved <buffer> call s:set_cursor()
|
|
||||||
|
|
||||||
1
|
1
|
||||||
call cursor((s:show_special ? 4 : 2) + s:offset_header, 5)
|
call cursor((s:show_special ? 4 : 2) + s:offset_header, 5)
|
||||||
|
@ -355,8 +354,9 @@ endfunction
|
||||||
|
|
||||||
" Function: s:open_buffers {{{1
|
" Function: s:open_buffers {{{1
|
||||||
function! s:open_buffers(cword) abort
|
function! s:open_buffers(cword) abort
|
||||||
enew
|
|
||||||
if exists('s:marked') && !empty(s:marked)
|
if exists('s:marked') && !empty(s:marked)
|
||||||
|
enew
|
||||||
|
setlocal nobuflisted
|
||||||
for i in range(len(s:marked))
|
for i in range(len(s:marked))
|
||||||
for val in values(s:marked)
|
for val in values(s:marked)
|
||||||
if val[0] == i
|
if val[0] == i
|
||||||
|
@ -382,6 +382,10 @@ function! s:open_buffers(cword) abort
|
||||||
else
|
else
|
||||||
execute 'normal' a:cword
|
execute 'normal' a:cword
|
||||||
endif
|
endif
|
||||||
|
if exists('s:marked')
|
||||||
|
unlet s:marked
|
||||||
|
unlet s:nmarked
|
||||||
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" Function: s:close {{{1
|
" Function: s:close {{{1
|
||||||
|
|
Loading…
Reference in a new issue