vim-sussify/autoload/startify.vim

477 lines
13 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-08-04 21:35:12 +00:00
" Version: 1.7
2013-04-23 14:41:02 +00:00
2013-08-13 12:19:51 +00:00
if exists('g:autoloaded_startify') || &compatible
2013-04-23 14:41:02 +00:00
finish
endif
let g:autoloaded_startify = 1
2013-07-18 23:08:10 +00:00
" Init: values {{{1
let s:numfiles = get(g:, 'startify_files_number', 10)
let s:show_special = get(g:, 'startify_enable_special', 1)
let s:restore_position = get(g:, 'startify_restore_position')
let s:session_dir = resolve(expand(get(g:, 'startify_session_dir',
2013-05-13 17:53:44 +00:00
\ has('win32') ? '$HOME\vimfiles\session' : '~/.vim/session')))
" Init: autocmds {{{1
if get(g:, 'startify_session_persistence')
autocmd startify VimLeave *
\ if exists('v:this_session') && filewritable(v:this_session) |
\ execute 'mksession!' fnameescape(v:this_session) |
\ endif
endif
" Function: #get_separator {{{1
function! startify#get_separator() abort
return !exists('+shellslash') || &shellslash ? '/' : '\'
endfunction
let s:sep = startify#get_separator()
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
2013-05-13 17:48:03 +00:00
return
endif
endfor
endif
2013-07-18 23:51:02 +00:00
2013-07-29 22:05:06 +00:00
setlocal noswapfile nobuflisted buftype=nofile bufhidden=wipe
2013-07-25 18:16:32 +00:00
setlocal nonumber nolist statusline=\ startify
setfiletype startify
2013-07-25 11:53:34 +00:00
if v:version >= 703
2013-05-13 17:48:03 +00:00
setlocal norelativenumber
endif
2013-07-30 08:26:40 +00:00
let cnt = 0
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-07-18 23:08:10 +00:00
if s:show_special
2013-07-30 08:26:40 +00:00
call append('$', [' [e] <empty buffer>', ''])
2013-05-13 17:48:03 +00:00
endif
if get(g:, 'startify_session_detection', 1) && filereadable('Session.vim')
call append('$', [' [0] '. getcwd() . s:sep .'Session.vim', ''])
execute 'nnoremap <buffer> 0 :source Session.vim<cr>'
let cnt = 1
endif
2013-07-30 08:26:40 +00:00
for list in get(g:, 'startify_list_order', ['files', 'sessions', 'bookmarks'])
let cnt = s:show_{list}(cnt)
call append('$', '')
endfor
2013-05-13 17:48:03 +00:00
2013-07-18 23:08:10 +00:00
if s:show_special
2013-07-30 08:26:40 +00:00
call append('$', ' [q] <quit>')
2013-05-13 17:48:03 +00:00
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>
nnoremap <buffer> <2-LeftMouse> :execute 'normal' matchstr(getline('.'), '\w\+')<cr>
nnoremap <buffer><silent> q :call <sid>close()<cr>
2013-05-13 17:48:03 +00:00
if exists('g:startify_empty_buffer_key')
execute 'nnoremap <buffer><silent> '. g:startify_empty_buffer_key .' :enew<cr>'
endif
autocmd startify CursorMoved <buffer> call s:set_cursor()
if s:restore_position
autocmd startify BufReadPost * call s:restore_position()
endif
2013-05-13 17:48:03 +00:00
2013-07-26 00:08:27 +00:00
1
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
let spath = s:session_dir . s:sep . (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-08-13 12:19:51 +00:00
echo 'The session directory does not exist: '. s:session_dir .'. Create it? [y/n]'
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-08-13 12:19:51 +00:00
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
2013-08-13 12:19:51 +00:00
let spath = s:session_dir . s:sep . 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
2013-08-13 12:19:51 +00:00
2013-04-23 16:00:42 +00:00
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-08-13 12:19:51 +00:00
let spath = s:session_dir . s:sep . (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-08-13 12:19:51 +00:00
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:27:01 +00:00
" Function: s:show_dir {{{1
function! s:show_dir(cnt) abort
2013-07-30 08:26:40 +00:00
let cnt = a:cnt
2013-08-05 12:40:45 +00:00
let num = s:numfiles
2013-07-18 23:27:01 +00:00
let files = []
2013-07-30 08:26:40 +00:00
2013-07-18 23:27:01 +00:00
for fname in split(glob('.\=*'))
2013-07-18 23:31:31 +00:00
if isdirectory(fname)
\ || (exists('g:startify_skiplist') && s:is_in_skiplist(resolve(fnamemodify(fname, ':p'))))
2013-07-18 23:27:01 +00:00
continue
endif
call add(files, [getftime(fname), fname])
endfor
2013-07-30 08:26:40 +00:00
2013-07-18 23:27:01 +00:00
function! l:compare(x, y)
return a:y[0] - a:x[0]
endfunction
2013-07-30 08:26:40 +00:00
2013-07-18 23:27:01 +00:00
call sort(files, 'l:compare')
2013-07-30 08:26:40 +00:00
2013-07-18 23:27:01 +00:00
for items in files
let index = s:get_index_as_string(cnt)
let fname = items[1]
2013-07-30 08:26:40 +00:00
2013-07-18 23:27:01 +00:00
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) '<cr>'
2013-07-30 08:26:40 +00:00
2013-07-18 23:27:01 +00:00
let cnt += 1
2013-08-05 12:40:45 +00:00
let num -= 1
2013-07-30 08:26:40 +00:00
2013-08-05 12:40:45 +00:00
if !num
2013-07-18 23:27:01 +00:00
break
endif
endfor
2013-07-30 08:26:40 +00:00
2013-07-18 23:27:01 +00:00
return cnt
endfunction
" Function: s:show_files {{{1
function! s:show_files(cnt) abort
2013-07-30 08:26:40 +00:00
let cnt = a:cnt
let num = s:numfiles
2013-07-18 23:27:01 +00:00
let entries = {}
2013-07-30 08:26:40 +00:00
2013-08-02 13:46:12 +00:00
if !empty(v:oldfiles)
for fname in v:oldfiles
let fullpath = resolve(fnamemodify(fname, ':p'))
" filter duplicates, bookmarks and entries from the skiplist
if has_key(entries, fullpath)
\ || !filereadable(fullpath)
\ || (exists('g:startify_skiplist') && s:is_in_skiplist(fullpath))
\ || (exists('g:startify_bookmarks') && s:is_bookmark(fullpath))
continue
endif
2013-07-30 08:26:40 +00:00
2013-08-02 13:46:12 +00:00
let entries[fullpath] = 1
let index = s:get_index_as_string(cnt)
2013-07-30 08:26:40 +00:00
2013-08-02 13:46:12 +00:00
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) '<bar> call <sid>check_user_options()<cr>'
2013-07-30 08:26:40 +00:00
2013-08-02 13:46:12 +00:00
let cnt += 1
let num -= 1
2013-07-30 08:26:40 +00:00
2013-08-02 13:46:12 +00:00
if !num
break
endif
endfor
endif
2013-07-30 08:26:40 +00:00
2013-07-18 23:27:01 +00:00
return cnt
endfunction
" Function: s:show_sessions {{{1
2013-07-30 08:26:40 +00:00
function! s:show_sessions(cnt) abort
let sfiles = split(globpath(s:session_dir, '*'), '\n')
if empty(sfiles)
return a:cnt
2013-07-18 23:27:01 +00:00
endif
2013-07-30 08:26:40 +00:00
let cnt = a:cnt
for i in range(len(sfiles))
2013-07-18 23:27:01 +00:00
let idx = (i + cnt)
let index = s:get_index_as_string(idx)
2013-07-30 08:26:40 +00:00
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fnamemodify(sfiles[i], ':t:r'))
2013-08-09 14:17:35 +00:00
execute 'nnoremap <buffer>' index ':source' fnameescape(sfiles[i]) '<cr>'
2013-07-18 23:27:01 +00:00
endfor
2013-07-30 08:26:40 +00:00
return idx + 1
2013-07-18 23:27:01 +00:00
endfunction
" Function: s:show_bookmarks {{{1
function! s:show_bookmarks(cnt) abort
let cnt = a:cnt
2013-07-30 08:26:40 +00:00
if exists('g:startify_bookmarks')
for fname in g:startify_bookmarks
let index = s:get_index_as_string(cnt)
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) '<bar> call <sid>check_user_options()<cr>'
let cnt += 1
2013-07-30 08:26:40 +00:00
endfor
2013-07-18 23:27:01 +00:00
endif
2013-07-30 08:26:40 +00:00
return cnt
2013-07-18 23:27:01 +00:00
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:
2013-08-09 10:18:06 +00:00
" - s:marked[0]: ID
" - s:marked[1]: path
" - s:marked[2]: type (buffer, split, vsplit)
2013-05-13 17:48:03 +00:00
"
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 = {}
endif
2013-08-09 10:18:06 +00:00
let [id, path] = matchlist(getline('.'), '\v\[(.*)\]\s+(.*)')[1:2]
2013-08-15 11:44:19 +00:00
if path =~# '\V<empty buffer>\|<quit>' || path =~# '^\w\+$'
2013-05-13 17:48:03 +00:00
return
endif
2013-08-09 10:18:06 +00:00
2013-05-13 17:48:03 +00:00
setlocal modifiable
2013-08-09 10:18:06 +00:00
" set markers
if id =~# '[BSV]'
" replace marker by old ID
execute 'normal! ci]'. remove(s:marked, line('.'))[0]
2013-05-13 17:48:03 +00:00
else
2013-08-09 10:18:06 +00:00
" save ID and replace it by the marker of the given type
let s:marked[line('.')] = [id, path, a:type]
execute 'normal! ci]'. repeat(a:type, len(id))
2013-05-13 17:48:03 +00:00
endif
2013-08-09 10:18:06 +00:00
2013-05-13 17:48:03 +00:00
setlocal nomodifiable nomodified
endfunction
2013-07-18 23:27:01 +00:00
" Function: s:open_buffers {{{1
function! s:open_buffers(cword) abort
2013-08-09 11:15:33 +00:00
" markers found; open one or more buffers
2013-07-18 23:27:01 +00:00
if exists('s:marked') && !empty(s:marked)
enew
2013-07-29 12:53:00 +00:00
setlocal nobuflisted
2013-08-09 10:18:06 +00:00
2013-08-09 11:15:33 +00:00
for val in values(s:marked)
let [path, type] = val[1:2]
2013-08-09 11:15:33 +00:00
" open in split
if type == 'S'
if line2byte('$') == -1
execute 'edit' path
2013-08-09 10:18:06 +00:00
else
2013-08-09 11:15:33 +00:00
execute 'split' path
endif
" open in vsplit
elseif type == 'V'
if line2byte('$') == -1
2013-08-09 10:18:06 +00:00
execute 'edit' path
2013-08-09 11:15:33 +00:00
else
execute 'vsplit' path
2013-07-18 23:27:01 +00:00
endif
2013-08-09 11:15:33 +00:00
" open in current window
else
execute 'edit' path
endif
call s:check_user_options()
2013-08-09 11:15:33 +00:00
endfor
2013-08-09 10:18:06 +00:00
2013-08-09 11:15:33 +00:00
" remove markers for next instance of :Startify
if exists('s:marked')
unlet s:marked
endif
" no markers found; open a single buffer
else
execute 'normal' a:cword
endif
endfunction
" Function: s:check_user_options {{{1
function! s:check_user_options() abort
2013-08-10 08:41:27 +00:00
let path = expand('%')
let session = path . s:sep .'Session.vim'
" autoload session
2013-08-10 08:41:27 +00:00
if get(g:, 'startify_session_autoload') && filereadable(session)
execute 'source' session
" change directory
elseif get(g:, 'startify_change_to_dir', 1)
2013-08-10 08:41:27 +00:00
if isdirectory(path)
lcd %
else
lcd %:h
endif
endif
endfunction
" Function: s:close {{{1
function! s:close() abort
if len(filter(range(0, bufnr('$')), 'buflisted(v:val)'))
if bufloaded(bufnr('#'))
b #
else
bn
endif
else
quit
2013-07-18 23:27:01 +00:00
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
" Function: s:restore_position {{{1
function! s:restore_position() abort
autocmd! startify *
if line("'\"") > 0 && line("'\"") <= line('$')
call cursor(getpos("'\"")[1:])
endif
endfunction
2013-04-23 14:41:02 +00:00
" vim: et sw=2 sts=2