Config.edn - What is the correct format for multiple commands?

The following does NOT work:

;; Add your own commands to speedup.
;; E.g. [["js" "javascript"]]
:commands
[["task" "TODO myName → "]]
[["do" "DOING myName → "]]
[["next" "TODO [[myName next]] → "]]
[["reply" "WAITING ⮌ → "]]
[["scheduled" "WAITING 🧳 → "]]

hi, don’t use double brackets:

:commands [
    ["task" "TODO myName → "]
    ["do" "DOING myName → "]
    ["next" "TODO [[myName next]] → "]
    ["reply" "WAITING ⮌ → "]
    ["scheduled" "WAITING 🧳 → "]
]
3 Likes

Thanks for taking the time to reply :slightly_smiling_face:
Now it’s working.

2 Likes