fixed auto-complete function name for contexts

This commit is contained in:
Brian Phillips
2009-12-02 15:55:59 -06:00
parent 20e04d5a4d
commit f6cf3fe76f

View File

@@ -86,7 +86,7 @@ endfunction
function! TodoAppendContextCurrent() function! TodoAppendContextCurrent()
let id = TodoCurrentLineId() let id = TodoCurrentLineId()
call inputsave() call inputsave()
let context = input("Context: ", "@", "customlist,CompleteTodoProjects") let context = input("Context: ", "@", "customlist,CompleteTodoContexts")
call inputrestore() call inputrestore()
silent call TodoAction('append ' . id . ' ' . context) silent call TodoAction('append ' . id . ' ' . context)
endfunction endfunction