Function renaming and reordering

This commit is contained in:
Marco Hinz 2013-05-25 11:08:22 +02:00
parent 77642786c2
commit 77aa5df09f
2 changed files with 88 additions and 88 deletions

View file

@ -114,21 +114,99 @@ function! startify#insane_in_the_membrane() abort
call cursor(special ? 4 : 2, 5)
endfunction
" Function: startify#get_separator {{{1
function! startify#get_separator() abort
return !exists('+shellslash') || &shellslash ? '/' : '\'
" Function: startify#session_delete {{{1
function! startify#session_delete(...) abort
if !isdirectory(s:session_dir)
echo 'The session directory does not exist: '. s:session_dir
return
elseif empty(startify#session_list_as_string(''))
echo 'There are no sessions...'
return
endif
let spath = s:session_dir . startify#get_separator() . (exists('a:1')
\ ? a:1
\ : input('Delete this session: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_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
" Function: startify#get_session_names {{{1
function! startify#get_session_names(lead, ...) abort
" Function: startify#session_save {{{1
function! startify#session_save(...) abort
if !isdirectory(s:session_dir)
if exists('*mkdir')
echo 'The session directory does not exist: '. s:session_dir .'. Create it? [y/n]' | redraw
if (nr2char(getchar()) == 'y')
call mkdir(s:session_dir, 'p')
else
echo
return
endif
else
echo 'The session directory does not exist: '. s:session_dir
return
endif
endif
let spath = s:session_dir . startify#get_separator() . (exists('a:1')
\ ? a:1
\ : input('Save under this session name: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string'))
\ | redraw
let spath = s:escape(spath)
if !filereadable(spath)
execute 'mksession '. spath | echo 'Session saved under: '. spath
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!'
endif
endfunction
" Function: startify#session_load {{{1
function! startify#session_load(...) abort
if !isdirectory(s:session_dir)
echo 'The session directory does not exist: '. s:session_dir
return
elseif empty(startify#session_list_as_string(''))
echo 'There are no sessions...'
return
endif
let spath = s:session_dir . startify#get_separator() . (exists('a:1')
\ ? a:1
\ : input('Load this session: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string'))
\ | redraw
if filereadable(spath)
execute 'source '. s:escape(spath)
else
echo 'No such file: '. spath
endif
endfunction
" Function: startify#session_list {{{1
function! startify#session_list(lead, ...) abort
return map(split(globpath(s:session_dir, '*'.a:lead.'*', '\n')), 'fnamemodify(v:val, ":t")')
endfunction
" Function: s:get_session_names_as_string {{{1
function! s:get_session_names_as_string(lead, ...) abort
" Function: startify#session_list_as_string {{{1
function! startify#session_list_as_string(lead, ...) abort
return join(map(split(globpath(s:session_dir, '*'.a:lead.'*', '\n')), 'fnamemodify(v:val, ":t")'), "\n")
endfunction
" Function: startify#get_separator {{{1
function! startify#get_separator() abort
return !exists('+shellslash') || &shellslash ? '/' : '\'
endfunction
" Function: s:escape {{{1
function! s:escape(path) abort
return !exists('+shellslash') || &shellslash ? fnameescape(a:path) : escape(a:path, '\')
@ -153,84 +231,6 @@ function! s:is_bookmark(arg) abort
endfor
endfunction
" Function: startify#delete_session {{{1
function! startify#delete_session(...) abort
if !isdirectory(s:session_dir)
echo 'The session directory does not exist: '. s:session_dir
return
elseif empty(s:get_session_names_as_string(''))
echo 'There are no sessions...'
return
endif
let spath = s:session_dir . startify#get_separator() . (exists('a:1')
\ ? a:1
\ : input('Delete this session: ', fnamemodify(v:this_session, ':t'), 'custom,s: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
" Function: startify#save_session {{{1
function! startify#save_session(...) abort
if !isdirectory(s:session_dir)
if exists('*mkdir')
echo 'The session directory does not exist: '. s:session_dir .'. Create it? [y/n]' | redraw
if (nr2char(getchar()) == 'y')
call mkdir(s:session_dir, 'p')
else
echo
return
endif
else
echo 'The session directory does not exist: '. s:session_dir
return
endif
endif
let spath = s:session_dir . startify#get_separator() . (exists('a:1')
\ ? a:1
\ : input('Save under this session name: ', fnamemodify(v:this_session, ':t'), 'custom,s:get_session_names_as_string'))
\ | redraw
let spath = s:escape(spath)
if !filereadable(spath)
execute 'mksession '. spath | echo 'Session saved under: '. spath
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!'
endif
endfunction
" Function: startify#load_session {{{1
function! startify#load_session(...) abort
if !isdirectory(s:session_dir)
echo 'The session directory does not exist: '. s:session_dir
return
elseif empty(s:get_session_names_as_string(''))
echo 'There are no sessions...'
return
endif
let spath = s:session_dir . startify#get_separator() . (exists('a:1')
\ ? a:1
\ : input('Load this session: ', fnamemodify(v:this_session, ':t'), 'custom,s:get_session_names_as_string'))
\ | redraw
if filereadable(spath)
execute 'source '. s:escape(spath)
else
echo 'No such file: '. spath
endif
endfunction
" Function: s:open_buffers {{{1
function! s:open_buffers(cword) abort
if exists('s:marked') && !empty(s:marked)

View file

@ -16,9 +16,9 @@ augroup startify
\ endif
augroup END
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>)
command! -nargs=? -bar -complete=customlist,startify#session_list SSave call startify#session_save(<f-args>)
command! -nargs=? -bar -complete=customlist,startify#session_list SLoad call startify#session_load(<f-args>)
command! -nargs=? -bar -complete=customlist,startify#session_list SDelete call startify#session_delete(<f-args>)
command! -nargs=0 -bar Startify enew | call startify#insane_in_the_membrane()
" vim: et sw=2 sts=2