more 'silent' additions
This commit is contained in:
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user