parent
ab48a7b26c
commit
edfe0cf1f6
|
@ -58,7 +58,7 @@ function! startify#delete_session(...) abort
|
||||||
endif
|
endif
|
||||||
let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1')
|
let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1')
|
||||||
\ ? a:1
|
\ ? a:1
|
||||||
\ : input('Delete this session: ', '', 'custom,startify#get_session_names_as_string'))
|
\ : input('Delete this session: ', fnamemodify(v:this_session, ':t'), 'custom,startify#get_session_names_as_string'))
|
||||||
\ | redraw
|
\ | redraw
|
||||||
echo 'Really delete '. spath .'? [y/n]' | redraw
|
echo 'Really delete '. spath .'? [y/n]' | redraw
|
||||||
if (nr2char(getchar()) == 'y')
|
if (nr2char(getchar()) == 'y')
|
||||||
|
@ -90,7 +90,7 @@ function! startify#save_session(...) abort
|
||||||
endif
|
endif
|
||||||
let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1')
|
let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1')
|
||||||
\ ? a:1
|
\ ? a:1
|
||||||
\ : input('Save under this session name: ', '', 'custom,startify#get_session_names_as_string'))
|
\ : input('Save under this session name: ', fnamemodify(v:this_session, ':t'), 'custom,startify#get_session_names_as_string'))
|
||||||
\ | redraw
|
\ | redraw
|
||||||
let spath = startify#escape(spath)
|
let spath = startify#escape(spath)
|
||||||
if !filereadable(spath)
|
if !filereadable(spath)
|
||||||
|
@ -116,7 +116,7 @@ function! startify#load_session(...) abort
|
||||||
endif
|
endif
|
||||||
let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1')
|
let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1')
|
||||||
\ ? a:1
|
\ ? a:1
|
||||||
\ : input('Load this session: ', '', 'custom,startify#get_session_names_as_string'))
|
\ : input('Load this session: ', fnamemodify(v:this_session, ':t'), 'custom,startify#get_session_names_as_string'))
|
||||||
\ | redraw
|
\ | redraw
|
||||||
if filereadable(spath)
|
if filereadable(spath)
|
||||||
execute 'source '. startify#escape(spath)
|
execute 'source '. startify#escape(spath)
|
||||||
|
|
Loading…
Reference in a new issue