From 77aa5df09f16dc745f1ef32aa80f4794afacffa0 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sat, 25 May 2013 11:08:22 +0200 Subject: [PATCH] Function renaming and reordering --- autoload/startify.vim | 170 +++++++++++++++++++++--------------------- plugin/startify.vim | 6 +- 2 files changed, 88 insertions(+), 88 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index e381303..656a5d7 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -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) diff --git a/plugin/startify.vim b/plugin/startify.vim index d033c89..5ee9fa1 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -16,9 +16,9 @@ augroup startify \ endif augroup END -command! -nargs=? -bar -complete=customlist,startify#get_session_names SSave call startify#save_session() -command! -nargs=? -bar -complete=customlist,startify#get_session_names SLoad call startify#load_session() -command! -nargs=? -bar -complete=customlist,startify#get_session_names SDelete call startify#delete_session() +command! -nargs=? -bar -complete=customlist,startify#session_list SSave call startify#session_save() +command! -nargs=? -bar -complete=customlist,startify#session_list SLoad call startify#session_load() +command! -nargs=? -bar -complete=customlist,startify#session_list SDelete call startify#session_delete() command! -nargs=0 -bar Startify enew | call startify#insane_in_the_membrane() " vim: et sw=2 sts=2