vim-sussify/autoload/startify.vim

128 lines
4.1 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-08 15:19:19 +00:00
" Version: 1.5
2013-04-23 14:41:02 +00:00
if exists('g:autoloaded_startify') || &cp
finish
endif
let g:autoloaded_startify = 1
2013-05-02 21:34:45 +00:00
" Function: startify#get_session_names {{{1
2013-04-24 13:01:43 +00:00
function! startify#get_session_names(lead, ...) abort
return map(split(globpath(g:startify_session_dir, '*'.a:lead.'*', '\n')), 'fnamemodify(v:val, ":t")')
endfunction
2013-05-02 21:34:45 +00:00
" Function: startify#get_session_names_as_string {{{1
2013-04-24 13:01:43 +00:00
function! startify#get_session_names_as_string(lead, ...) abort
return join(map(split(globpath(g:startify_session_dir, '*'.a:lead.'*', '\n')), 'fnamemodify(v:val, ":t")'), "\n")
endfunction
2013-05-02 21:34:45 +00:00
" Function: startify#escape {{{1
2013-04-25 10:38:07 +00:00
function! startify#escape(path) abort
2013-04-27 22:52:41 +00:00
return !exists('+shellslash') || &shellslash ? fnameescape(a:path) : escape(a:path, '\')
2013-04-25 10:38:07 +00:00
endfunction
2013-05-02 21:34:45 +00:00
" Function: startify#get_separator {{{1
2013-04-30 11:34:25 +00:00
function! startify#get_separator() abort
2013-04-25 10:38:07 +00:00
return !exists('+shellslash') || &shellslash ? '/' : '\'
endfunction
2013-05-02 21:34:45 +00:00
" Function: startify#is_in_skiplist {{{1
2013-04-29 13:06:40 +00:00
function! startify#is_in_skiplist(arg) abort
for regexp in g:startify_skiplist
2013-04-29 13:06:40 +00:00
if (a:arg =~# regexp)
return 1
endif
endfor
endfunction
2013-05-08 15:18:11 +00:00
" Function: startify#is_bookmark {{{1
function! startify#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-05-02 21:34:45 +00:00
" Function: startify#delete_session {{{1
2013-05-02 19:16:26 +00:00
function! startify#delete_session(...) abort
if !isdirectory(g:startify_session_dir)
echo 'The session directory does not exist: '. g:startify_session_dir
return
elseif empty(startify#get_session_names_as_string(''))
2013-05-02 20:06:18 +00:00
echo 'There are no sessions...'
return
endif
2013-05-02 19:16:26 +00:00
let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1')
\ ? a:1
\ : input('Delete this session: ', '', 'custom,startify#get_session_names_as_string'))
\ | redraw
echo 'Really delete '. spath .'? [y/n]' | redraw
if (nr2char(getchar()) == 'y')
if delete(spath) == 0
echo 'Deleted session '. spath .'!'
else
echo 'Deletion failed!'
endif
else
echo 'Deletion aborted!'
endif
endfunction
2013-05-02 21:34:45 +00:00
" Function: startify#save_session {{{1
2013-04-23 16:00:42 +00:00
function! startify#save_session(...) abort
2013-04-24 13:23:39 +00:00
if !isdirectory(g:startify_session_dir)
2013-04-26 16:06:30 +00:00
if exists('*mkdir')
echo 'The session directory does not exist: '. g:startify_session_dir .'. Create it? [y/n]' | redraw
2013-04-29 13:06:40 +00:00
if (nr2char(getchar()) == 'y')
2013-04-26 16:06:30 +00:00
call mkdir(g:startify_session_dir, 'p')
else
echo
return
endif
else
echo 'The session directory does not exist: '. g:startify_session_dir
return
endif
2013-04-24 13:23:39 +00:00
endif
2013-04-30 11:34:25 +00:00
let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1')
2013-04-24 13:01:43 +00:00
\ ? a:1
\ : input('Save under this session name: ', '', 'custom,startify#get_session_names_as_string'))
\ | redraw
2013-04-23 16:00:42 +00:00
if !filereadable(spath)
2013-04-23 14:41:02 +00:00
execute 'mksession '. 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'
execute 'mksession! '. spath | echo 'Session saved under: '. spath
else
echo 'Did NOT save the session!'
2013-04-23 14:41:02 +00:00
endif
endfunction
2013-05-02 21:34:45 +00:00
" Function: startify#load_session {{{1
2013-04-23 16:00:42 +00:00
function! startify#load_session(...) abort
2013-04-24 13:23:39 +00:00
if !isdirectory(g:startify_session_dir)
echo 'The session directory does not exist: '. g:startify_session_dir
return
elseif empty(startify#get_session_names_as_string(''))
echo 'There are no sessions...'
return
2013-04-24 13:23:39 +00:00
endif
2013-04-30 11:34:25 +00:00
let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1')
2013-04-24 13:01:43 +00:00
\ ? a:1
\ : input('Load this session: ', '', 'custom,startify#get_session_names_as_string'))
\ | redraw
2013-04-23 14:41:02 +00:00
if filereadable(spath)
execute 'source '. spath
else
2013-04-23 16:00:42 +00:00
echo 'No such file: '. spath
2013-04-23 14:41:02 +00:00
endif
endfunction
" vim: et sw=2 sts=2