gizgok
gizgok

Reputation: 7649

How to organize todo priorities as columns in emacs?

I'm looking at using emacs org mode to have a todo list for myself. I would like to write my todo items with priorities and generate a table with the number of different priorities. For e.g if I have urgent important later as 3 priorities then have three columns with those values and todo items under them. Please don't recommend an app, if this can be done via writing code in elisp, I would want to do that.

Upvotes: 3

Views: 230

Answers (1)

user9903
user9903

Reputation:

As bzg said, you can check out org-collector.el

It lets you use elisp expressions for the columns so all you need to do is extract the priorities I think using an org-mode function.

Upvotes: 1

Related Questions