Search code examples
emacsorg-mode

Orgmode priorities: possible more than A B C?


Is it possible to have more than 3 priority statuses in Orgmode? I'd like to have A B C and D. Thank you.


Solution

  • This has been working for me with priorities ranging from A to J:

    (setq org-enable-priority-commands t
          org-highest-priority ?A
          org-default-priority ?J
          org-lowest-priority ?J)
    

    However, I nearly never make use of F, G, H, I, J ... At the time being I use org 9.3.4. It seems to work without the first line org-enable-priority-commands t as well.

    So you could write:

    (setq org-highest-priority ?A
          org-default-priority ?B
          org-lowest-priority ?D)