aboutsummaryrefslogtreecommitdiffstats
path: root/autoload/git_todo.vim
blob: ca579219d78781bf2a177da206f9612970e40c12 (plain)
1
2
3
4
5
6
7
8
9
function! git_todo#QuickfixTodos(ref)
	let ref = a:ref

	if empty(ref)
		let ref = get(g:, 'git_todo_default_ref', '')
	endif

	cexpr system('git todo ' . ref)
endfunction