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, '\')
|
return !exists('+shellslash') || &shellslash ? fnameescape(a:path) : escape(a:path, '\')
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! startify#get_sep() abort
|
function! startify#get_separator() abort
|
||||||
return !exists('+shellslash') || &shellslash ? '/' : '\'
|
return !exists('+shellslash') || &shellslash ? '/' : '\'
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ function! startify#save_session(...) abort
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
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
|
\ ? a:1
|
||||||
\ : input('Save under this session name: ', '', 'custom,startify#get_session_names_as_string'))
|
\ : input('Save under this session name: ', '', 'custom,startify#get_session_names_as_string'))
|
||||||
\ | redraw
|
\ | redraw
|
||||||
|
@ -68,7 +68,7 @@ function! startify#load_session(...) abort
|
||||||
echo 'The session directory does not exist: '. g:startify_session_dir
|
echo 'The session directory does not exist: '. g:startify_session_dir
|
||||||
return
|
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
|
\ ? a:1
|
||||||
\ : input('Load this session: ', '', 'custom,startify#get_session_names_as_string'))
|
\ : input('Load this session: ', '', 'custom,startify#get_session_names_as_string'))
|
||||||
\ | redraw
|
\ | redraw
|
||||||
|
|
|
@ -43,7 +43,7 @@ function! s:insane_in_the_membrane() abort
|
||||||
setfiletype startify
|
setfiletype startify
|
||||||
|
|
||||||
let special = get(g:, 'startify_enable_special', 1)
|
let special = get(g:, 'startify_enable_special', 1)
|
||||||
let sep = startify#get_sep()
|
let sep = startify#get_separator()
|
||||||
let cnt = 0
|
let cnt = 0
|
||||||
|
|
||||||
if special
|
if special
|
||||||
|
|
|
@ -7,7 +7,7 @@ if exists("b:current_syntax")
|
||||||
finish
|
finish
|
||||||
endif
|
endif
|
||||||
|
|
||||||
let s:sep = startify#get_sep()
|
let s:sep = startify#get_separator()
|
||||||
|
|
||||||
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
|
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
|
||||||
syntax match StartifyBracket /\[\|\]/
|
syntax match StartifyBracket /\[\|\]/
|
||||||
|
|
Loading…
Reference in a new issue