Adding a fake SOMEDAY task marker

I have some tasks which I would like to do, but aren’t relevant right now. This snippet (for config.edn) adds a /SOMEDAY slash command. It adds or replaces the block’s task marker with SOMEDAY. I wrap it in internal-link brackets so that it has similar behavior to the built-in task markers. At some point I’ll add some custom css to make it have same look and feel as other tasks.

 :commands [
   ["SOMEDAY" [[:editor/clear-current-slash] [:editor/set-marker "[[SOMEDAY]]"] [:editor/move-cursor-to-end]]]
 ]

References:

Handy! Thanks for sharing!

Here’s a CSS snippet that brings the style closer to a TODO item.

/* SOMEDAY Marker */ 
span[data-ref="SOMEDAY"] {
    border: 0;
    font-size: 85%;
    font-weight: 650;
    margin: 0 2px 0 0;
    opacity: .7;
    padding: 2px 4px;
}