New approach of handling plugins
This commit is contained in:
parent
53019cc309
commit
34ba64ca88
|
@ -32,10 +32,14 @@ function! startify#insane_in_the_membrane() abort
|
||||||
enew
|
enew
|
||||||
|
|
||||||
setfiletype startify
|
setfiletype startify
|
||||||
silent file startify
|
"silent file startify
|
||||||
|
|
||||||
setlocal buftype=nofile bufhidden=wipe nobuflisted noswapfile
|
"setlocal buftype=nofile
|
||||||
setlocal nonumber nolist statusline=\ %t
|
"setlocal bufhidden=wipe
|
||||||
|
setlocal nobuflisted
|
||||||
|
setlocal noswapfile
|
||||||
|
"setlocal nonumber nolist statusline=\ %t
|
||||||
|
setlocal nonumber nolist statusline=\ startify
|
||||||
|
|
||||||
if (v:version >= 703)
|
if (v:version >= 703)
|
||||||
setlocal norelativenumber
|
setlocal norelativenumber
|
||||||
|
@ -84,7 +88,7 @@ function! startify#insane_in_the_membrane() abort
|
||||||
nnoremap <buffer> <cr> :call <SID>open_buffers(expand('<cword>'))<cr>
|
nnoremap <buffer> <cr> :call <SID>open_buffers(expand('<cword>'))<cr>
|
||||||
nnoremap <buffer> <2-LeftMouse> :execute 'normal '. matchstr(getline('.'), '\w\+')<cr>
|
nnoremap <buffer> <2-LeftMouse> :execute 'normal '. matchstr(getline('.'), '\w\+')<cr>
|
||||||
nnoremap <buffer><silent> q
|
nnoremap <buffer><silent> q
|
||||||
\ :if len(filter(range(0, bufnr('$')), 'buflisted(v:val)')) <bar>
|
\ :if len(filter(range(0, bufnr('$')), 'buflisted(v:val)')) > 1 <bar>
|
||||||
\ bd <bar>
|
\ bd <bar>
|
||||||
\ else <bar>
|
\ else <bar>
|
||||||
\ quit <bar>
|
\ quit <bar>
|
||||||
|
@ -96,8 +100,8 @@ function! startify#insane_in_the_membrane() abort
|
||||||
|
|
||||||
autocmd! startify *
|
autocmd! startify *
|
||||||
autocmd startify CursorMoved <buffer> call s:set_cursor()
|
autocmd startify CursorMoved <buffer> call s:set_cursor()
|
||||||
autocmd startify BufLeave <buffer> autocmd! startify *
|
"autocmd startify BufLeave <buffer> autocmd! startify *
|
||||||
autocmd startify WinLeave <buffer> bd
|
"autocmd startify WinLeave <buffer> bd
|
||||||
|
|
||||||
call cursor((s:show_special ? 4 : 2) + s:offset_header, 5)
|
call cursor((s:show_special ? 4 : 2) + s:offset_header, 5)
|
||||||
endfunction
|
endfunction
|
||||||
|
@ -360,6 +364,7 @@ endfunction
|
||||||
|
|
||||||
" Function: s:open_buffers {{{1
|
" Function: s:open_buffers {{{1
|
||||||
function! s:open_buffers(cword) abort
|
function! s:open_buffers(cword) abort
|
||||||
|
let id = bufnr('%')
|
||||||
if exists('s:marked') && !empty(s:marked)
|
if exists('s:marked') && !empty(s:marked)
|
||||||
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)
|
||||||
|
@ -378,6 +383,7 @@ function! s:open_buffers(cword) abort
|
||||||
else
|
else
|
||||||
execute 'normal '. a:cword
|
execute 'normal '. a:cword
|
||||||
endif
|
endif
|
||||||
|
execute 'silent bdelete' id
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" Function: s:get_index_as_string {{{1
|
" Function: s:get_index_as_string {{{1
|
||||||
|
|
Loading…
Reference in a new issue