vim-signify/autoload/sy/utils.vim
2013-07-17 09:54:03 +02:00

28 lines
540 B
VimL

if exists('b:autoloaded_sy_utils')
finish
endif
let b:autoloaded_sy_utils = 1
" Function: #escape {{{1
function! sy#utils#escape(path) abort
if exists('+shellslash')
let old_ssl = &shellslash
set noshellslash
endif
let path = shellescape(a:path)
if exists('old_ssl')
let &shellslash = old_ssl
endif
return path
endfunction
" Function: #separator {{{1
function! sy#utils#separator() abort
return !exists('+shellslash') || &shellslash ? '/' : '\'
endfunction
" vim: et sw=2 sts=2