Bounty: 50
I wonder if there is any easy way to configure effort selection dialogue to allow selecting effort value from the list using single key.
Currently I have configured Effort_ALL
in the following way:
(add-to-list 'org-global-properties
'("Effort_ALL". "0:05 0:15 0:30 1:00 2:00"))
and am using org-set-effort
to pop up the dialogue. However the dialogue that it shows is just a regular narrow-list-of-candidates dialogue which takes multiple keystrokes (either arrows or partial string followed by return) to select the option I need.
What I would rather have instead is a org-fast-tag-selection-single-key
-style dialogue that allows to select an entry from the list by just pressing a single button (e.g. 1
, 2
, 3
, etc).
I’ve tried to look at the code for the org-set-effort
and google for the ivy-like list-narrowing modules, but so far wasn’t able to find much.