more 'silent' additions

This commit is contained in:
Brian Phillips
2009-12-02 15:38:46 -06:00
parent 9c56d2137a
commit 20e04d5a4d

View File

@@ -80,7 +80,7 @@ function! TodoPriorityCurrent()
call inputsave() call inputsave()
let priority = input("Priority (A-Z): ", "A") let priority = input("Priority (A-Z): ", "A")
call inputrestore() call inputrestore()
call TodoAction('pri ' . id . ' ' . priority) silent call TodoAction('pri ' . id . ' ' . priority)
endfunction endfunction
function! TodoAppendContextCurrent() function! TodoAppendContextCurrent()
@@ -88,7 +88,7 @@ function! TodoAppendContextCurrent()
call inputsave() call inputsave()
let context = input("Context: ", "@", "customlist,CompleteTodoProjects") let context = input("Context: ", "@", "customlist,CompleteTodoProjects")
call inputrestore() call inputrestore()
call TodoAction('append ' . id . ' ' . context) silent call TodoAction('append ' . id . ' ' . context)
endfunction endfunction
function! TodoAppendProjectCurrent() function! TodoAppendProjectCurrent()
@@ -96,7 +96,7 @@ function! TodoAppendProjectCurrent()
call inputsave() call inputsave()
let project = input("Project: ", "+", "customlist,CompleteTodoProjects") let project = input("Project: ", "+", "customlist,CompleteTodoProjects")
call inputrestore() call inputrestore()
call TodoAction('append ' . id . ' ' . project) silent call TodoAction('append ' . id . ' ' . project)
endfunction endfunction
function! TodoListProj() function! TodoListProj()