a02c8793bf
Closes #179.
173 lines
3.5 KiB
VimL
173 lines
3.5 KiB
VimL
" vim: et sw=2 sts=2
|
|
|
|
scriptencoding utf-8
|
|
|
|
" Init: values {{{1
|
|
let g:id_top = 0x100
|
|
let g:sy_cache = {}
|
|
|
|
" Function: #start {{{1
|
|
function! sy#start() abort
|
|
if g:signify_locked
|
|
return
|
|
endif
|
|
|
|
let sy_path = resolve(expand('%:p'))
|
|
|
|
if s:skip(sy_path)
|
|
if exists('b:sy')
|
|
call sy#sign#remove_all_signs(bufnr(''))
|
|
unlet! b:sy b:sy_info
|
|
endif
|
|
return
|
|
endif
|
|
|
|
" sy_info is used in autoload/sy/repo
|
|
let b:sy_info = {
|
|
\ 'chdir': haslocaldir() ? 'lcd' : 'cd',
|
|
\ 'cwd': fnameescape(getcwd()),
|
|
\ 'dir': fnamemodify(sy_path, ':p:h'),
|
|
\ 'path': sy#util#escape(sy_path),
|
|
\ 'file': sy#util#escape(fnamemodify(sy_path, ':t')),
|
|
\ }
|
|
|
|
" new buffer.. add to list of registered files
|
|
if !exists('b:sy') || b:sy.path != sy_path
|
|
let b:sy = {
|
|
\ 'path' : sy_path,
|
|
\ 'buffer': bufnr(''),
|
|
\ 'active': 0,
|
|
\ 'type' : 'unknown',
|
|
\ 'hunks' : [],
|
|
\ 'id_top': g:id_top,
|
|
\ 'stats' : [-1, -1, -1] }
|
|
if get(g:, 'signify_disable_by_default')
|
|
return
|
|
endif
|
|
|
|
" register buffer as active
|
|
let b:sy.active = 1
|
|
|
|
let [ diff, b:sy.type ] = sy#repo#detect()
|
|
if b:sy.type == 'unknown'
|
|
call sy#disable()
|
|
return
|
|
endif
|
|
|
|
" register file as active with found VCS
|
|
let b:sy.stats = [0, 0, 0]
|
|
|
|
let dir = fnamemodify(b:sy.path, ':h')
|
|
if !has_key(g:sy_cache, dir)
|
|
let g:sy_cache[dir] = b:sy.type
|
|
endif
|
|
|
|
if empty(diff)
|
|
" no changes found
|
|
return
|
|
endif
|
|
|
|
" inactive buffer.. bail out
|
|
elseif !b:sy.active
|
|
return
|
|
|
|
" retry detecting VCS
|
|
elseif b:sy.type == 'unknown'
|
|
let [ diff, b:sy.type ] = sy#repo#detect()
|
|
if b:sy.type == 'unknown'
|
|
" no VCS found
|
|
call sy#disable()
|
|
return
|
|
endif
|
|
|
|
" update signs
|
|
else
|
|
let diff = sy#repo#get_diff_{b:sy.type}()[1]
|
|
let b:sy.id_top = g:id_top
|
|
endif
|
|
|
|
if get(g:, 'signify_line_highlight')
|
|
call sy#highlight#line_enable()
|
|
else
|
|
call sy#highlight#line_disable()
|
|
endif
|
|
|
|
call sy#sign#process_diff(diff)
|
|
|
|
let b:sy.id_top = (g:id_top - 1)
|
|
endfunction
|
|
|
|
" Function: #stop {{{1
|
|
function! sy#stop(bufnr) abort
|
|
let sy = getbufvar(a:bufnr, 'sy')
|
|
if empty(sy)
|
|
return
|
|
endif
|
|
|
|
call sy#sign#remove_all_signs(a:bufnr)
|
|
endfunction
|
|
|
|
" Function: #enable {{{1
|
|
function! sy#enable() abort
|
|
if !exists('b:sy')
|
|
call sy#start()
|
|
return
|
|
endif
|
|
|
|
if !b:sy.active
|
|
let b:sy.active = 1
|
|
call sy#start()
|
|
endif
|
|
endfunction
|
|
|
|
" Function: #disable {{{1
|
|
function! sy#disable() abort
|
|
if exists('b:sy') && b:sy.active
|
|
call sy#stop(b:sy.buffer)
|
|
let b:sy.active = 0
|
|
let b:sy.stats = [-1, -1, -1]
|
|
endif
|
|
endfunction
|
|
|
|
" Function: #toggle {{{1
|
|
function! sy#toggle() abort
|
|
if !exists('b:sy') || !b:sy.active
|
|
call sy#enable()
|
|
else
|
|
call sy#disable()
|
|
endif
|
|
endfunction
|
|
|
|
" Function: #buffer_is_active {{{1
|
|
function! sy#buffer_is_active()
|
|
return exists('b:sy') && b:sy.active
|
|
endfunction
|
|
|
|
function! s:skip(path)
|
|
if &diff || !filereadable(a:path)
|
|
return 1
|
|
endif
|
|
|
|
if exists('g:signify_skip_filetype')
|
|
if has_key(g:signify_skip_filetype, &filetype)
|
|
return 1
|
|
elseif has_key(g:signify_skip_filetype, 'help') && (&buftype == 'help')
|
|
return 1
|
|
endif
|
|
endif
|
|
|
|
if exists('g:signify_skip_filename') && has_key(g:signify_skip_filename, a:path)
|
|
return 1
|
|
endif
|
|
|
|
if exists('g:signify_skip_filename_pattern')
|
|
for pattern in g:signify_skip_filename_pattern
|
|
if a:path =~ pattern
|
|
return 1
|
|
endif
|
|
endfor
|
|
endif
|
|
|
|
return 0
|
|
endfunction
|