2013-04-23 14:41:02 +00:00
|
|
|
" Plugin: https://github.com/mhinz/vim-startify
|
|
|
|
" Description: Start screen displaying recently used stuff.
|
|
|
|
" Maintainer: Marco Hinz <http://github.com/mhinz>
|
2013-05-08 15:19:19 +00:00
|
|
|
" Version: 1.5
|
2013-04-23 14:41:02 +00:00
|
|
|
|
|
|
|
if exists('g:loaded_startify') || &cp
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_startify = 1
|
|
|
|
|
|
|
|
" Init {{{1
|
2013-04-25 11:04:04 +00:00
|
|
|
let g:startify_session_dir = resolve(expand(get(g:, 'startify_session_dir',
|
|
|
|
\ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session')))
|
2013-04-23 14:41:02 +00:00
|
|
|
|
|
|
|
augroup startify
|
|
|
|
autocmd!
|
2013-04-28 07:17:57 +00:00
|
|
|
autocmd VimEnter *
|
2013-04-28 23:34:53 +00:00
|
|
|
\ if !argc() && (line2byte('$') == -1) && (v:progname =~? '^[gm]\=vim\%[\.exe]$') |
|
2013-04-28 07:17:57 +00:00
|
|
|
\ call s:insane_in_the_membrane() |
|
|
|
|
\ endif
|
2013-04-23 14:41:02 +00:00
|
|
|
augroup END
|
|
|
|
|
2013-05-02 19:16:26 +00:00
|
|
|
command! -nargs=? -bar -complete=customlist,startify#get_session_names SSave call startify#save_session(<f-args>)
|
|
|
|
command! -nargs=? -bar -complete=customlist,startify#get_session_names SLoad call startify#load_session(<f-args>)
|
|
|
|
command! -nargs=? -bar -complete=customlist,startify#get_session_names SDelete call startify#delete_session(<f-args>)
|
2013-04-26 07:57:49 +00:00
|
|
|
command! -nargs=0 -bar Startify enew | call s:insane_in_the_membrane()
|
2013-04-24 12:28:35 +00:00
|
|
|
|
2013-04-26 07:57:49 +00:00
|
|
|
" Function: s:insane_in_the_membrane {{{1
|
|
|
|
function! s:insane_in_the_membrane() abort
|
2013-04-26 08:18:31 +00:00
|
|
|
if !empty(v:servername) && exists('g:startify_skiplist_server')
|
|
|
|
for servname in g:startify_skiplist_server
|
2013-04-29 13:06:40 +00:00
|
|
|
if (servname == v:servername)
|
2013-04-26 08:18:31 +00:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
2013-04-26 10:40:42 +00:00
|
|
|
setlocal nonumber noswapfile bufhidden=wipe
|
2013-04-29 13:06:40 +00:00
|
|
|
if (v:version >= 703)
|
2013-04-24 15:14:18 +00:00
|
|
|
setlocal norelativenumber
|
|
|
|
endif
|
2013-04-26 08:18:31 +00:00
|
|
|
setfiletype startify
|
2013-04-23 14:41:02 +00:00
|
|
|
|
2013-04-29 10:50:09 +00:00
|
|
|
let special = get(g:, 'startify_enable_special', 1)
|
2013-04-30 11:34:25 +00:00
|
|
|
let sep = startify#get_separator()
|
2013-04-29 10:50:09 +00:00
|
|
|
let cnt = 0
|
|
|
|
|
|
|
|
if special
|
2013-04-29 22:03:47 +00:00
|
|
|
call append('$', ' [e] <empty buffer>')
|
2013-04-29 10:50:09 +00:00
|
|
|
endif
|
2013-04-23 14:41:02 +00:00
|
|
|
|
|
|
|
if get(g:, 'startify_show_files', 1) && !empty(v:oldfiles)
|
2013-05-08 15:18:11 +00:00
|
|
|
let entries = {}
|
2013-04-24 05:53:33 +00:00
|
|
|
let numfiles = get(g:, 'startify_show_files_number', 10)
|
2013-04-29 10:50:09 +00:00
|
|
|
if special
|
|
|
|
call append('$', '')
|
|
|
|
endif
|
2013-04-23 14:41:02 +00:00
|
|
|
for fname in v:oldfiles
|
2013-05-08 15:18:11 +00:00
|
|
|
let expfname = resolve(fnamemodify(fname, ':p'))
|
|
|
|
" filter duplicates, bookmarks and entries from the skiplist
|
|
|
|
if has_key(entries, expfname) ||
|
|
|
|
\ !filereadable(expfname) ||
|
|
|
|
\ (exists('g:startify_skiplist') && startify#is_in_skiplist(expfname)) ||
|
|
|
|
\ (exists('g:startify_bookmarks') && startify#is_bookmark(expfname))
|
2013-04-23 14:41:02 +00:00
|
|
|
continue
|
|
|
|
endif
|
2013-05-08 15:18:11 +00:00
|
|
|
let entries[expfname] = 1
|
2013-04-30 11:32:30 +00:00
|
|
|
let index = s:get_index_as_string(cnt)
|
|
|
|
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
|
|
|
|
execute 'nnoremap <buffer> '. index .' :edit '. startify#escape(fname) .' <bar> lcd %:h<cr>'
|
2013-04-23 14:41:02 +00:00
|
|
|
let cnt += 1
|
2013-04-29 13:06:40 +00:00
|
|
|
if (cnt == numfiles)
|
2013-04-23 14:41:02 +00:00
|
|
|
break
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
|
|
|
|
let sfiles = split(globpath(g:startify_session_dir, '*'), '\n')
|
|
|
|
|
|
|
|
if get(g:, 'startify_show_sessions', 1) && !empty(sfiles)
|
|
|
|
call append('$', '')
|
|
|
|
for i in range(len(sfiles))
|
2013-04-30 11:32:30 +00:00
|
|
|
let idx = (i + cnt)
|
|
|
|
let index = s:get_index_as_string(idx)
|
|
|
|
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fnamemodify(sfiles[i], ':t:r'))
|
2013-05-07 14:02:49 +00:00
|
|
|
execute 'nnoremap <buffer> '. index .' :bd <bar> tabnew +source\ '. startify#escape(sfiles[i]) .' <bar> if (line2byte("$") == -1) <bar> close <bar> endif<cr>'
|
2013-04-23 14:41:02 +00:00
|
|
|
endfor
|
2013-04-24 08:42:35 +00:00
|
|
|
let cnt = idx
|
|
|
|
endif
|
|
|
|
|
|
|
|
if exists('g:startify_bookmarks')
|
|
|
|
call append('$', '')
|
|
|
|
for fname in g:startify_bookmarks
|
|
|
|
let cnt += 1
|
2013-04-30 11:32:30 +00:00
|
|
|
let index = s:get_index_as_string(cnt)
|
|
|
|
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
|
|
|
|
execute 'nnoremap <buffer> '. index .' :edit '. startify#escape(fname) .' <bar> lcd %:h<cr>'
|
2013-04-24 08:42:35 +00:00
|
|
|
endfor
|
2013-04-23 14:41:02 +00:00
|
|
|
endif
|
|
|
|
|
2013-04-29 10:50:09 +00:00
|
|
|
if special
|
|
|
|
call append('$', ['', ' [q] <quit>'])
|
|
|
|
endif
|
2013-04-23 14:41:02 +00:00
|
|
|
|
2013-04-26 10:40:42 +00:00
|
|
|
setlocal nomodifiable nomodified
|
2013-04-23 14:41:02 +00:00
|
|
|
|
2013-05-02 13:00:00 +00:00
|
|
|
nnoremap <buffer><silent> e :enew<cr>
|
|
|
|
nnoremap <buffer><silent> i :enew <bar> startinsert<cr>
|
2013-05-07 14:02:49 +00:00
|
|
|
nnoremap <buffer><silent> <space> :call <SID>set_mark('B')<cr>
|
|
|
|
nnoremap <buffer><silent> s :call <SID>set_mark('S')<cr>
|
|
|
|
nnoremap <buffer><silent> v :call <SID>set_mark('V')<cr>
|
2013-05-02 13:00:00 +00:00
|
|
|
nnoremap <buffer> <cr> :call <SID>open_buffers(expand('<cword>'))<cr>
|
|
|
|
nnoremap <buffer> <2-LeftMouse> :execute 'normal '. matchstr(getline('.'), '\w\+')<cr>
|
|
|
|
nnoremap <buffer> q
|
2013-04-29 13:06:40 +00:00
|
|
|
\ :if (len(filter(range(0, bufnr('$')), 'buflisted(v:val)')) > 1) <bar>
|
2013-04-27 12:58:23 +00:00
|
|
|
\ bd <bar>
|
|
|
|
\ else <bar>
|
|
|
|
\ quit <bar>
|
|
|
|
\ endif<cr>
|
2013-04-23 14:41:02 +00:00
|
|
|
|
2013-04-27 07:57:11 +00:00
|
|
|
if exists('g:startify_empty_buffer_key')
|
|
|
|
execute 'nnoremap <buffer><silent> '. g:startify_empty_buffer_key .' :enew<cr>'
|
|
|
|
endif
|
|
|
|
|
2013-04-23 14:41:02 +00:00
|
|
|
autocmd! startify *
|
2013-05-02 13:00:00 +00:00
|
|
|
autocmd startify CursorMoved <buffer> call s:set_cursor()
|
2013-05-05 16:43:11 +00:00
|
|
|
autocmd startify BufLeave <buffer> autocmd! startify *
|
2013-04-25 07:33:07 +00:00
|
|
|
|
2013-04-29 10:50:09 +00:00
|
|
|
call cursor(special ? 4 : 2, 5)
|
2013-04-23 14:41:02 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-05-02 13:00:00 +00:00
|
|
|
" 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+(.*)')
|
2013-05-03 08:56:06 +00:00
|
|
|
if matches[2] =~ '\V<empty buffer>\|<quit>' || matches[2] =~ '^\w\+$'
|
2013-05-02 20:15:33 +00:00
|
|
|
return
|
|
|
|
endif
|
2013-05-02 13:00:00 +00:00
|
|
|
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
|
|
|
|
|
2013-04-30 11:32:30 +00:00
|
|
|
" Function: s:get_index_as_string {{{1
|
|
|
|
function! s:get_index_as_string(idx) abort
|
|
|
|
if exists('g:startify_custom_indices')
|
|
|
|
let listlen = len(g:startify_custom_indices)
|
2013-04-30 12:35:22 +00:00
|
|
|
return (a:idx < listlen) ? g:startify_custom_indices[a:idx] : string(a:idx - listlen)
|
2013-04-30 11:32:30 +00:00
|
|
|
else
|
|
|
|
return string(a:idx)
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-04-25 13:42:06 +00:00
|
|
|
" Function: s:set_cursor {{{1
|
|
|
|
function! s:set_cursor() abort
|
|
|
|
let s:line_old = exists('s:line_new') ? s:line_new : 5
|
|
|
|
let s:line_new = line('.')
|
2013-04-25 13:46:10 +00:00
|
|
|
if empty(getline(s:line_new))
|
2013-04-29 13:06:40 +00:00
|
|
|
if (s:line_new > s:line_old)
|
2013-04-25 13:42:06 +00:00
|
|
|
let s:line_new += 1
|
2013-04-25 13:46:10 +00:00
|
|
|
call cursor(s:line_new, 5) " going down
|
2013-04-25 13:42:06 +00:00
|
|
|
else
|
|
|
|
let s:line_new -= 1
|
2013-04-27 08:17:29 +00:00
|
|
|
call cursor((s:line_new < 2 ? 2 : s:line_new), 5) " going up
|
2013-04-25 13:42:06 +00:00
|
|
|
endif
|
|
|
|
else
|
2013-04-27 08:17:29 +00:00
|
|
|
call cursor((s:line_new < 2 ? 2 : 0), 5) " hold cursor in column
|
2013-04-25 13:42:06 +00:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2013-04-23 14:41:02 +00:00
|
|
|
" vim: et sw=2 sts=2
|