vim-signify/autoload/sy/debug.vim

49 lines
1.3 KiB
VimL
Raw Normal View History

2013-09-30 10:19:31 +02:00
" vim: et sw=2 sts=2
scriptencoding utf-8
2013-07-19 22:33:23 +02:00
" Function: #list_active_buffers {{{1
2013-07-17 12:30:58 +02:00
function! sy#debug#list_active_buffers() abort
for b in range(1, bufnr('$'))
if !buflisted(b) || empty(getbufvar(b, 'sy'))
2013-11-21 20:57:43 -05:00
continue
endif
2013-07-17 12:30:58 +02:00
2013-11-22 14:05:18 +01:00
let sy = copy(getbufvar(b, 'sy'))
2013-11-21 20:57:43 -05:00
let path = remove(sy, 'path')
2013-11-22 14:05:18 +01:00
2013-07-17 12:30:58 +02:00
echo "\n". path ."\n". repeat('=', strlen(path))
2014-09-18 13:11:33 +02:00
2017-01-18 16:28:35 +01:00
for k in ['active', 'buffer', 'vcs', 'stats', 'signid']
2014-09-18 13:11:33 +02:00
if k == 'stats'
echo printf("%10s = %d added, %d changed, %d removed\n",
\ k,
\ sy.stats[0],
\ sy.stats[1],
\ sy.stats[2])
else
echo printf("%10s = %s\n", k, string(sy[k]))
2014-09-18 13:11:33 +02:00
endif
2013-07-17 12:30:58 +02:00
endfor
2014-09-18 13:11:33 +02:00
if empty(sy.hunks)
echo printf("%10s = %s\n", 'hunks', '[]')
else
for i in range(len(sy.hunks))
if i == 0
echo printf("%10s = start: %d, end: %d, IDs: %s\n",
\ 'hunks',
\ sy.hunks[i].start,
\ sy.hunks[i].end,
\ string(sy.hunks[i].ids))
else
echo printf("%20s: %d, %s: %d, %s: %s\n",
\ 'start', sy.hunks[i].start,
\ 'end', sy.hunks[i].end,
\ 'IDs', string(sy.hunks[i].ids))
endif
endfor
endif
2013-07-17 12:30:58 +02:00
endfor
endfunction