From f6cf3fe76fcf3a535591dc006c6c69c625ef6361 Mon Sep 17 00:00:00 2001 From: Brian Phillips Date: Wed, 2 Dec 2009 15:55:59 -0600 Subject: [PATCH] fixed auto-complete function name for contexts --- vim/plugin/todo.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/plugin/todo.vim b/vim/plugin/todo.vim index ea67212..5a6db8e 100644 --- a/vim/plugin/todo.vim +++ b/vim/plugin/todo.vim @@ -86,7 +86,7 @@ endfunction function! TodoAppendContextCurrent() let id = TodoCurrentLineId() call inputsave() - let context = input("Context: ", "@", "customlist,CompleteTodoProjects") + let context = input("Context: ", "@", "customlist,CompleteTodoContexts") call inputrestore() silent call TodoAction('append ' . id . ' ' . context) endfunction