add documentation for GitGutterGetHunkSummary.

This commit is contained in:
Bailey Ling
2013-08-19 15:41:26 +00:00
parent 8951f68795
commit bdaff53497

View File

@@ -576,6 +576,9 @@ function! GitGutterGetHunks()
return s:is_active() ? s:hunks : []
endfunction
" Returns an array that contains a summary of the current hunk status.
" The format is [ added, modified, removed ], where each value represents
" the number of lines added/modified/removed respectively.
function! GitGutterGetHunkSummary()
return s:hunk_summary
endfunction