Fix :SSave problem with wildmode

With these settings: wildmode=list and laststatus=2

When call the command :SSave and use <tab> for autocomplete, and choose any
session, then the message "Session already exists. Overwrite?  [y/n]" does not
appear on screen.

References #155.
This commit is contained in:
Pedro Nicolás Gómez 2015-04-16 10:39:02 +02:00 committed by Marco Hinz
parent e3988d2446
commit 96ccdf7f15

View file

@ -197,17 +197,16 @@ function! startify#session_save(...) abort
endif
endif
if exists('a:1')
let sname = a:1
else
call inputsave()
let sname = input('Save under this session name: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string')
call inputrestore()
redraw
if empty(sname)
echo 'You gave an empty name!'
return
endif
call inputsave()
let sname = exists('a:1')
\ ? a:1
\ : input('Save under this session name: ', fnamemodify(v:this_session, ':t'), 'custom,startify#session_list_as_string')
\ | redraw
call inputrestore()
if empty(sname)
echo 'You gave an empty name!'
return
endif
let spath = s:session_dir . s:sep . sname