make function naming clearer
This commit is contained in:
parent
4711a54cf5
commit
b97fcbd490
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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<empty buffer>\|<quit>/
|
||||
syntax match StartifyBracket /\[\|\]/
|
||||
|
|
Loading…
Reference in a new issue