diff --git a/autoload/startify.vim b/autoload/startify.vim index 04de66e..81faeb3 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -20,7 +20,7 @@ function! startify#escape(path) abort return !exists('+shellslash') || &shellslash ? fnameescape(a:path) : escape(a:path, '\') endfunction -function! startify#get_sep() abort +function! startify#get_separator() abort return !exists('+shellslash') || &shellslash ? '/' : '\' endfunction @@ -47,7 +47,7 @@ function! startify#save_session(...) abort return endif endif - let spath = g:startify_session_dir . startify#get_sep() . (exists('a:1') + let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1') \ ? a:1 \ : input('Save under this session name: ', '', 'custom,startify#get_session_names_as_string')) \ | redraw @@ -68,7 +68,7 @@ function! startify#load_session(...) abort echo 'The session directory does not exist: '. g:startify_session_dir return endif - let spath = g:startify_session_dir . startify#get_sep() . (exists('a:1') + let spath = g:startify_session_dir . startify#get_separator() . (exists('a:1') \ ? a:1 \ : input('Load this session: ', '', 'custom,startify#get_session_names_as_string')) \ | redraw diff --git a/plugin/startify.vim b/plugin/startify.vim index 297a972..b2288e8 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -43,7 +43,7 @@ function! s:insane_in_the_membrane() abort setfiletype startify let special = get(g:, 'startify_enable_special', 1) - let sep = startify#get_sep() + let sep = startify#get_separator() let cnt = 0 if special diff --git a/syntax/startify.vim b/syntax/startify.vim index 56c202b..4436ff9 100644 --- a/syntax/startify.vim +++ b/syntax/startify.vim @@ -7,7 +7,7 @@ if exists("b:current_syntax") finish endif -let s:sep = startify#get_sep() +let s:sep = startify#get_separator() syntax match StartifySpecial /\V\|/ syntax match StartifyBracket /\[\|\]/