diff --git a/taskwarrior.el b/taskwarrior.el index f908de5..a29d044 100644 --- a/taskwarrior.el +++ b/taskwarrior.el @@ -157,7 +157,7 @@ (defun taskwarrior-add (description) (interactive "sDescription: ") - (message (taskwarrior--shell-command "add" "" description)) + (taskwarrior--shell-command "add" "" description) (when (eq (buffer-name) taskwarrior-buffer-name) (taskwarrior-update-buffer))) @@ -167,7 +167,7 @@ (let ((id (taskwarrior-id-at-point)) (confirmation (read-from-minibuffer "Done [y/n]?: "))) (when (string= confirmation "y") - (message (taskwarrior--shell-command "done" id)) + (taskwarrior--shell-command "done" id) (taskwarrior-update-buffer)))) (defun taskwarrior-delete () @@ -176,7 +176,7 @@ (let ((id (taskwarrior-id-at-point)) (confirmation (read-from-minibuffer "Delete [y/n]?: "))) (when (string= confirmation "y") - (message (taskwarrior--shell-command "delete" id "" "" "yes")) + (taskwarrior--shell-command "delete" id "" "" "yes") (taskwarrior-update-buffer)))) ;; Setup a major mode for taskwarrior