diff --git a/plugin/startify.vim b/plugin/startify.vim index d645945..409f9ed 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -108,11 +108,14 @@ function! s:insane_in_the_membrane() abort setlocal nomodifiable nomodified - nnoremap e :enew - nnoremap i :enew startinsert - nnoremap :normal - nnoremap <2-LeftMouse> :execute 'normal '. matchstr(getline('.'), '\w\+') - nnoremap q + nnoremap e :enew + nnoremap i :enew startinsert + nnoremap :call set_mark('B') + nnoremap s :call set_mark('S') + nnoremap v :call set_mark('V') + nnoremap :call open_buffers(expand('')) + nnoremap <2-LeftMouse> :execute 'normal '. matchstr(getline('.'), '\w\+') + nnoremap q \ :if (len(filter(range(0, bufnr('$')), 'buflisted(v:val)')) > 1) \ bd \ else @@ -124,12 +127,62 @@ function! s:insane_in_the_membrane() abort endif autocmd! startify * - autocmd startify CursorMoved call s:set_cursor() - autocmd startify BufWipeout autocmd! startify * + autocmd startify CursorMoved call s:set_cursor() + autocmd startify BufLeave try | wincmd c | catch | autocmd! startify * call cursor(special ? 4 : 2, 5) endfunction +" Function: s:open_buffers {{{1 +function! s:open_buffers(cword) abort + if exists('s:marked') && !empty(s:marked) + for i in range(len(s:marked)) + for val in values(s:marked) + if val[0] == i + if val[3] == 'S' + execute 'split '. val[2] + elseif val[3] == 'V' + execute 'vsplit '. val[2] + else + execute 'edit '. val[2] + endif + continue + endif + endfor + endfor + else + execute 'normal '. a:cword + endif +endfunction + +" Function: s:set_mark {{{1 +" +" Markers are saved in the s:marked dict using the follow format: +" - s:marked[0]: ID (for sorting) +" - s:marked[1]: what the brackets contained before +" - s:marked[2]: the actual path +" - s:marked[3]: type (buffer, split, vsplit) +" +function! s:set_mark(type) abort + if !exists('s:marked') + let s:marked = {} + let s:nmarked = 0 + endif + " matches[1]: content between brackets + " matches[2]: path + let matches = matchlist(getline('.'), '\v\[(.*)\]\s+(.*)') + setlocal modifiable + if matches[1] =~ 'B\|S\|V' + let s:nmarked -= 1 + execute 'normal! ci]'. remove(s:marked, line('.'))[1] + else + let s:marked[line('.')] = [s:nmarked, matches[1], matches[2], a:type] + let s:nmarked += 1 + execute 'normal! ci]'. repeat(a:type, len(matches[1])) + endif + setlocal nomodifiable nomodified +endfunction + " Function: s:get_index_as_string {{{1 function! s:get_index_as_string(idx) abort if exists('g:startify_custom_indices') diff --git a/syntax/startify.vim b/syntax/startify.vim index 4436ff9..97fcea4 100644 --- a/syntax/startify.vim +++ b/syntax/startify.vim @@ -9,16 +9,16 @@ endif let s:sep = startify#get_separator() -syntax match StartifySpecial /\V\|/ -syntax match StartifyBracket /\[\|\]/ -syntax match StartifyNumber /\v\[.+\]/hs=s+1,he=e-1 contains=StartifyBracket -syntax match StartifyFile /.*/ contains=StartifyBracket,StartifyNumber,StartifyPath,StartifySpecial +syntax match StartifySpecial /\V\|/ +syntax match StartifyBracket /\[\|\]/ +syntax match StartifyNumber /\[[^BSV]\+\]/hs=s+1,he=e-1 contains=StartifyBracket +syntax match StartifyFile /.*/ contains=StartifyBracket,StartifyNumber,StartifyPath,StartifySpecial execute 'syntax match StartifySlash /\'. s:sep .'/' execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash' -highlight link StartifyBracket Delimiter -highlight link StartifyNumber Number +highlight link StartifyBracket Delimiter +highlight link StartifyNumber Number let b:current_syntax = 'startify'