2013-09-30 04:19:31 -04:00
|
|
|
" vim: et sw=2 sts=2
|
|
|
|
|
2013-08-19 11:36:16 -04:00
|
|
|
scriptencoding utf-8
|
|
|
|
|
2015-05-20 08:00:39 -04:00
|
|
|
" Function: #escape {{{1
|
|
|
|
function! sy#util#escape(path) abort
|
|
|
|
if exists('+shellslash')
|
|
|
|
let old_ssl = &shellslash
|
|
|
|
if fnamemodify(&shell, ':t') == 'cmd.exe'
|
|
|
|
set noshellslash
|
|
|
|
else
|
|
|
|
set shellslash
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
let path = shellescape(a:path)
|
|
|
|
|
|
|
|
if exists('old_ssl')
|
|
|
|
let &shellslash = old_ssl
|
|
|
|
endif
|
|
|
|
|
|
|
|
return path
|
|
|
|
endfunction
|
|
|
|
|
2014-11-02 09:57:50 -05:00
|
|
|
" Function: #refresh_windows {{{1
|
|
|
|
function! sy#util#refresh_windows() abort
|
|
|
|
let winnr = winnr()
|
|
|
|
windo if exists('b:sy') | call sy#start() | endif
|
|
|
|
execute winnr .'wincmd w'
|
|
|
|
endfunction
|
2014-11-05 08:16:44 -05:00
|
|
|
|
|
|
|
" Function: #hunk_text_object {{{1
|
|
|
|
function! sy#util#hunk_text_object(emptylines) abort
|
|
|
|
if !exists('b:sy')
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
let lnum = line('.')
|
|
|
|
let hunks = filter(copy(b:sy.hunks), 'v:val.start <= lnum && v:val.end >= lnum')
|
|
|
|
|
|
|
|
if empty(hunks)
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
execute hunks[0].start
|
|
|
|
normal! V
|
|
|
|
|
|
|
|
if a:emptylines
|
|
|
|
let lnum = hunks[0].end
|
|
|
|
while getline(lnum+1) =~ '^$'
|
|
|
|
let lnum += 1
|
|
|
|
endwhile
|
|
|
|
execute lnum
|
|
|
|
else
|
|
|
|
execute hunks[0].end
|
|
|
|
endif
|
|
|
|
endfunction
|
2014-12-30 16:10:43 -05:00
|
|
|
|