vim-signify/autoload/sy/util.vim

30 lines
530 B
VimL
Raw Normal View History

scriptencoding utf-8
2013-07-17 06:30:58 -04:00
if exists('b:autoloaded_sy_util')
finish
endif
let b:autoloaded_sy_util = 1
" Function: #escape {{{1
function! sy#util#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#util#separator() abort
return !exists('+shellslash') || &shellslash ? '/' : '\'
endfunction
" vim: et sw=2 sts=2