vim-sussify/autoload/startify.vim

388 lines
12 KiB
VimL
Raw Normal View History

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-30 08:26:55 +00:00
" Version: 1.6
2013-04-23 14:41:02 +00:00
if exists('g:autoloaded_startify') || &cp
finish
endif
let g:autoloaded_startify = 1
2013-07-18 23:08:10 +00:00
" Init: values {{{1
2013-05-13 17:53:44 +00:00
let s:session_dir = resolve(expand(get(g:, 'startify_session_dir',
\ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session')))
2013-07-18 23:08:10 +00:00
let s:cmd = (get(g:, 'startify_change_to_dir', 1) ? ' <bar> lcd %:h' : '') . '<cr>'
let s:numfiles = get(g:, 'startify_show_files_number', 10)
let s:show_special = get(g:, 'startify_enable_special', 1)
let s:show_dir = get(g:, 'startify_show_dir')
let s:show_files = get(g:, 'startify_show_files', 1)
let s:show_sessions = get(g:, 'startify_show_sessions', 1)
2013-07-15 21:19:56 +00:00
2013-07-18 23:08:10 +00:00
" Function: #insane_in_the_membrane {{{1
2013-05-13 17:48:03 +00:00
function! startify#insane_in_the_membrane() abort
if !empty(v:servername) && exists('g:startify_skiplist_server')
for servname in g:startify_skiplist_server
if (servname == v:servername)
return
endif
endfor
endif
2013-07-11 11:54:52 +00:00
setlocal nonumber noswapfile nolist bufhidden=wipe
2013-05-13 17:48:03 +00:00
if (v:version >= 703)
setlocal norelativenumber
endif
setfiletype startify
let s:offset_header = 0
if exists('g:startify_custom_header')
call append('$', g:startify_custom_header)
let s:offset_header += len(g:startify_custom_header)
endif
2013-05-13 17:48:03 +00:00
let sep = startify#get_separator()
let cnt = 0
2013-07-18 23:08:10 +00:00
if s:show_special
2013-05-13 17:48:03 +00:00
call append('$', ' [e] <empty buffer>')
endif
2013-07-18 23:08:10 +00:00
if s:show_dir
2013-07-18 23:27:01 +00:00
let cnt = s:show_dir(cnt)
endif
2013-07-18 23:08:10 +00:00
if s:show_files && !empty(v:oldfiles)
2013-07-18 23:27:01 +00:00
let cnt = s:show_files(cnt)
2013-05-13 17:48:03 +00:00
endif
2013-05-13 17:53:44 +00:00
let sfiles = split(globpath(s:session_dir, '*'), '\n')
2013-07-18 23:08:10 +00:00
if s:show_sessions && !empty(sfiles)
2013-07-18 23:27:01 +00:00
let cnt = s:show_sessions(sfiles, cnt)
2013-05-13 17:48:03 +00:00
endif
if exists('g:startify_bookmarks')
2013-07-18 23:27:01 +00:00
call s:show_bookmarks(cnt)
2013-05-13 17:48:03 +00:00
endif
2013-07-18 23:08:10 +00:00
if s:show_special
2013-05-13 17:48:03 +00:00
call append('$', ['', ' [q] <quit>'])
endif
setlocal nomodifiable nomodified
2013-06-10 21:32:58 +00:00
nnoremap <buffer><silent> e :enew<cr>
nnoremap <buffer><silent> i :enew <bar> startinsert<cr>
nnoremap <buffer><silent> b :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>
nnoremap <buffer> <cr> :call <SID>open_buffers(expand('<cword>'))<cr>
2013-05-13 17:48:03 +00:00
nnoremap <buffer> <2-LeftMouse> :execute 'normal '. matchstr(getline('.'), '\w\+')<cr>
nnoremap <buffer> q
\ :if (len(filter(range(0, bufnr('$')), 'buflisted(v:val)')) > 1) <bar>
\ bd <bar>
\ else <bar>
\ quit <bar>
\ endif<cr>
if exists('g:startify_empty_buffer_key')
execute 'nnoremap <buffer><silent> '. g:startify_empty_buffer_key .' :enew<cr>'
endif
autocmd! startify *
2013-05-13 20:50:13 +00:00
autocmd startify CursorMoved <buffer> call s:set_cursor()
2013-05-13 17:48:03 +00:00
autocmd startify BufLeave <buffer> autocmd! startify *
autocmd startify WinLeave <buffer> bd
2013-05-13 17:48:03 +00:00
2013-07-18 23:08:10 +00:00
call cursor((s:show_special ? 4 : 2) + s:offset_header, 5)
2013-05-13 17:48:03 +00:00
endfunction
2013-07-18 23:27:01 +00:00
" Function: #session_load {{{1
function! startify#session_load(...) abort
2013-05-13 17:53:44 +00:00
if !isdirectory(s:session_dir)
echo 'The session directory does not exist: '. s:session_dir
2013-05-02 19:16:26 +00:00
return
2013-05-25 09:08:22 +00:00
elseif empty(startify#session_list_as_string(''))
2013-05-02 20:06:18 +00:00
echo 'There are no sessions...'
return
endif
2013-05-13 17:53:44 +00:00
let spath = s:session_dir . startify#get_separator() . (exists('a:1')
2013-05-02 19:16:26 +00:00
\ ? a:1
2013-07-18 23:27:01 +00:00
\ : input('Load this session: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string'))
2013-05-02 19:16:26 +00:00
\ | redraw
2013-07-18 23:27:01 +00:00
if filereadable(spath)
execute 'source '. fnameescape(spath)
2013-05-02 19:16:26 +00:00
else
2013-07-18 23:27:01 +00:00
echo 'No such file: '. spath
2013-05-02 19:16:26 +00:00
endif
endfunction
2013-07-18 23:08:10 +00:00
" Function: #session_save {{{1
2013-05-25 09:08:22 +00:00
function! startify#session_save(...) abort
2013-05-13 17:53:44 +00:00
if !isdirectory(s:session_dir)
2013-04-26 16:06:30 +00:00
if exists('*mkdir')
2013-05-13 17:53:44 +00:00
echo 'The session directory does not exist: '. s:session_dir .'. Create it? [y/n]' | redraw
2013-04-29 13:06:40 +00:00
if (nr2char(getchar()) == 'y')
2013-05-13 17:53:44 +00:00
call mkdir(s:session_dir, 'p')
2013-04-26 16:06:30 +00:00
else
echo
return
endif
else
2013-05-13 17:53:44 +00:00
echo 'The session directory does not exist: '. s:session_dir
2013-04-26 16:06:30 +00:00
return
endif
2013-04-24 13:23:39 +00:00
endif
2013-05-25 09:36:02 +00:00
if exists('a:1')
let sname = a:1
2013-05-25 09:36:02 +00:00
else
let sname = input('Save under this session name: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string')
2013-05-25 09:36:02 +00:00
redraw
if empty(sname)
2013-05-25 15:45:23 +00:00
echo 'You gave an empty name!'
2013-05-25 09:36:02 +00:00
return
endif
endif
let spath = s:session_dir . startify#get_separator() . sname
2013-04-23 16:00:42 +00:00
if !filereadable(spath)
2013-07-01 20:32:14 +00:00
execute 'mksession '. fnameescape(spath) | echo 'Session saved under: '. spath
2013-04-23 16:00:42 +00:00
return
endif
echo 'Session already exists. Overwrite? [y/n]' | redraw
if nr2char(getchar()) == 'y'
2013-07-01 20:32:14 +00:00
execute 'mksession! '. fnameescape(spath) | echo 'Session saved under: '. spath
2013-04-23 16:00:42 +00:00
else
echo 'Did NOT save the session!'
2013-04-23 14:41:02 +00:00
endif
endfunction
2013-07-18 23:27:01 +00:00
" Function: #session_delete {{{1
function! startify#session_delete(...) abort
2013-05-13 17:53:44 +00:00
if !isdirectory(s:session_dir)
echo 'The session directory does not exist: '. s:session_dir
2013-04-24 13:23:39 +00:00
return
2013-05-25 09:08:22 +00:00
elseif empty(startify#session_list_as_string(''))
echo 'There are no sessions...'
return
2013-04-24 13:23:39 +00:00
endif
2013-05-13 17:53:44 +00:00
let spath = s:session_dir . startify#get_separator() . (exists('a:1')
2013-04-24 13:01:43 +00:00
\ ? a:1
2013-07-18 23:27:01 +00:00
\ : input('Delete this session: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string'))
2013-04-24 13:01:43 +00:00
\ | redraw
2013-07-18 23:27:01 +00:00
echo 'Really delete '. spath .'? [y/n]' | redraw
if (nr2char(getchar()) == 'y')
if delete(spath) == 0
echo 'Deleted session '. spath .'!'
else
echo 'Deletion failed!'
endif
2013-04-23 14:41:02 +00:00
else
2013-07-18 23:27:01 +00:00
echo 'Deletion aborted!'
2013-04-23 14:41:02 +00:00
endif
endfunction
2013-07-18 23:08:10 +00:00
" Function: #session_list {{{1
2013-05-25 09:08:22 +00:00
function! startify#session_list(lead, ...) abort
return map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")')
2013-05-25 09:08:22 +00:00
endfunction
2013-07-18 23:08:10 +00:00
" Function: #session_list_as_string {{{1
2013-05-25 09:08:22 +00:00
function! startify#session_list_as_string(lead, ...) abort
return join(map(split(globpath(s:session_dir, '*'.a:lead.'*'), '\n'), 'fnamemodify(v:val, ":t")'), "\n")
2013-05-25 09:08:22 +00:00
endfunction
2013-07-18 23:08:10 +00:00
" Function: #get_separator {{{1
2013-05-25 09:08:22 +00:00
function! startify#get_separator() abort
return !exists('+shellslash') || &shellslash ? '/' : '\'
endfunction
2013-07-18 23:27:01 +00:00
" Function: s:show_dir {{{1
function! s:show_dir(cnt) abort
let cnt = a:cnt
let files = []
if s:show_special
call append('$', '')
endif
for fname in split(glob('.\=*'))
if (fname == '.') || (fname == '..')
continue
endif
call add(files, [getftime(fname), fname])
endfor
function! l:compare(x, y)
return a:y[0] - a:x[0]
endfunction
call sort(files, 'l:compare')
for items in files
let index = s:get_index_as_string(cnt)
let fname = items[1]
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) '<cr>'
let cnt += 1
if (cnt == s:numfiles)
break
endif
endfor
return cnt
endfunction
" Function: s:show_files {{{1
function! s:show_files(cnt) abort
let cnt = a:cnt
let entries = {}
if s:show_special || s:show_dir
call append('$', '')
endif
for fname in v:oldfiles
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') && s:is_in_skiplist(expfname))
\ || (exists('g:startify_bookmarks') && s:is_bookmark(expfname))
continue
endif
let entries[expfname] = 1
let index = s:get_index_as_string(cnt)
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) s:cmd
let cnt += 1
let s:numfiles -= 1
if !s:numfiles
break
endif
endfor
return cnt
endfunction
" Function: s:show_sessions {{{1
function! s:show_sessions(sfiles, cnt) abort
let cnt = a:cnt
if s:show_special || s:show_dir || s:show_files
call append('$', '')
endif
for i in range(len(a:sfiles))
let idx = (i + cnt)
let index = s:get_index_as_string(idx)
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fnamemodify(a:sfiles[i], ':t:r'))
execute 'nnoremap <buffer> '. index .' :source '. fnameescape(a:sfiles[i]) .'<cr>'
endfor
return idx
endfunction
" Function: s:show_bookmarks {{{1
function! s:show_bookmarks(cnt) abort
let cnt = a:cnt
if s:show_special || s:show_dir || s:show_files || s:show_sessions
call append('$', '')
endif
for fname in g:startify_bookmarks
let cnt += 1
let index = s:get_index_as_string(cnt)
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
execute 'nnoremap <buffer> '. index .' :edit '. fnameescape(fname) . s:cmd
endfor
endfunction
2013-05-25 09:08:22 +00:00
" Function: s:is_in_skiplist {{{1
function! s:is_in_skiplist(arg) abort
for regexp in g:startify_skiplist
if (a:arg =~# regexp)
return 1
endif
endfor
endfunction
" Function: s:is_bookmark {{{1
function! s:is_bookmark(arg) abort
"for foo in filter(map(copy(g:startify_bookmarks), 'resolve(fnamemodify(v:val, ":p"))'), '!isdirectory(v:val)')
for foo in map(filter(copy(g:startify_bookmarks), '!isdirectory(v:val)'), 'resolve(fnamemodify(v:val, ":p"))')
if foo == a:arg
return 1
endif
endfor
endfunction
2013-07-18 23:27:01 +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('.')
let offset = s:offset_header + 2
if empty(getline(s:line_new))
if (s:line_new > s:line_old)
let s:line_new += 1
call cursor(s:line_new, 5) " going down
else
let s:line_new -= 1
call cursor((s:line_new < offset ? offset : s:line_new), 5) " going up
endif
2013-06-26 18:27:10 +00:00
else
2013-07-18 23:27:01 +00:00
call cursor((s:line_new < offset ? offset : 0), 5) " hold cursor in column
2013-06-26 18:27:10 +00:00
endif
endfunction
2013-05-13 20:50:13 +00:00
" Function: s:set_mark {{{1
2013-05-13 17:48:03 +00:00
"
" 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)
"
2013-05-13 20:50:13 +00:00
function! s:set_mark(type) abort
2013-05-13 17:48:03 +00:00
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+(.*)')
if matches[2] =~ '\V<empty buffer>\|<quit>' || matches[2] =~ '^\w\+$'
return
endif
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-07-18 23:27:01 +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
2013-05-13 17:48:03 +00:00
else
2013-07-18 23:27:01 +00:00
execute 'normal '. a:cword
endif
endfunction
" 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)
return (a:idx < listlen) ? g:startify_custom_indices[a:idx] : string(a:idx - listlen)
else
return string(a:idx)
2013-05-13 17:48:03 +00:00
endif
endfunction
2013-04-23 14:41:02 +00:00
" vim: et sw=2 sts=2