diff --git a/web/src/main/frontend/commands.cljs b/web/src/main/frontend/commands.cljs index d241eaeaa..2ee7860d0 100644 --- a/web/src/main/frontend/commands.cljs +++ b/web/src/main/frontend/commands.cljs @@ -239,7 +239,7 @@ (count prefix)))))) (def marker-pattern - #"(TODO|DOING|DONE|WAIT|CANCELED|STARTED|IN-PROGRESS)?\s?") + #"(NOW|LATER|TODO|DOING|DONE|WAIT|CANCELED|STARTED|IN-PROGRESS)?\s?") (defmethod handle-step :editor/set-marker [[_ marker] format] (when-let [input-id (state/get-edit-input-id)] diff --git a/web/src/main/frontend/format/block.cljs b/web/src/main/frontend/format/block.cljs index 977b27c35..d6a1631d0 100644 --- a/web/src/main/frontend/format/block.cljs +++ b/web/src/main/frontend/format/block.cljs @@ -178,7 +178,7 @@ ;; priority: A > B > C (defn sort-tasks [headings] - (let [markers ["DOING" "IN-PROGRESS" "TODO" "WAITING" "WAIT" "DONE" "CANCELED" "CANCELLED"] + (let [markers ["NOW" "LATER" "DOING" "IN-PROGRESS" "TODO" "WAITING" "WAIT" "DONE" "CANCELED" "CANCELLED"] markers (zipmap markers (reverse (range 1 (count markers)))) priorities ["A" "B" "C" "D" "E" "F" "G"] priorities (zipmap priorities (reverse (range 1 (count priorities))))]