Fix taskwarrior--change-attribute
This commit is contained in:
parent
02d96875ab
commit
d19449a0c0
1 changed files with 3 additions and 3 deletions
|
@ -116,12 +116,12 @@
|
||||||
|
|
||||||
(defun taskwarrior--change-attribute (attribute)
|
(defun taskwarrior--change-attribute (attribute)
|
||||||
"Change an attribute of a task"
|
"Change an attribute of a task"
|
||||||
(let* ((prefix (concat attribute ": "))
|
(let* ((prefix (concat attribute ":"))
|
||||||
(id (taskwarrior-id-at-point))
|
(id (taskwarrior-id-at-point))
|
||||||
(task (taskwarrior-export-task id))
|
(task (taskwarrior-export-task id))
|
||||||
(old-value (cdr (assoc-string attribute task)))
|
(old-value (cdr (assoc-string attribute task)))
|
||||||
(new-value (read-from-minibuffer prefix old-value)))
|
(new-value (read-from-minibuffer (concat prefix " ") old-value)))
|
||||||
(taskwarrior--shell-command "modify" id new-value)
|
(taskwarrior--shell-command "modify" id (concat prefix new-value))
|
||||||
(taskwarrior-update-buffer)))
|
(taskwarrior-update-buffer)))
|
||||||
|
|
||||||
(defun taskwarrior-change-description ()
|
(defun taskwarrior-change-description ()
|
||||||
|
|
Loading…
Reference in a new issue