Emmanuel Goldstein
Emmanuel Goldstein

Reputation: 363

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.

Upvotes: 3

Views: 1786

Answers (2)

Einblick
Einblick

Reputation: 66

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)

Upvotes: 5

Juancho
Juancho

Reputation: 7372

You can change the number of priorities by customizing org-priority-highest and org-priority-lowest, and there is also org-priority-default.

Or you can set it on a per-file basis.

Check for more options in the documentation.

Upvotes: 2

Related Questions