From 20e04d5a4de9308b2335009995bd8ee1578e5167 Mon Sep 17 00:00:00 2001 From: Brian Phillips Date: Wed, 2 Dec 2009 15:38:46 -0600 Subject: [PATCH] more 'silent' additions --- vim/plugin/todo.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vim/plugin/todo.vim b/vim/plugin/todo.vim index e798a0f..ea67212 100644 --- a/vim/plugin/todo.vim +++ b/vim/plugin/todo.vim @@ -80,7 +80,7 @@ function! TodoPriorityCurrent() call inputsave() let priority = input("Priority (A-Z): ", "A") call inputrestore() - call TodoAction('pri ' . id . ' ' . priority) + silent call TodoAction('pri ' . id . ' ' . priority) endfunction function! TodoAppendContextCurrent() @@ -88,7 +88,7 @@ function! TodoAppendContextCurrent() call inputsave() let context = input("Context: ", "@", "customlist,CompleteTodoProjects") call inputrestore() - call TodoAction('append ' . id . ' ' . context) + silent call TodoAction('append ' . id . ' ' . context) endfunction function! TodoAppendProjectCurrent() @@ -96,7 +96,7 @@ function! TodoAppendProjectCurrent() call inputsave() let project = input("Project: ", "+", "customlist,CompleteTodoProjects") call inputrestore() - call TodoAction('append ' . id . ' ' . project) + silent call TodoAction('append ' . id . ' ' . project) endfunction function! TodoListProj()