Is your feature request related to a problem? Please describe.
I hate having to click on tasks in unsorted and put them in a project. It'd be nice to be able to write
"Hide under a rock for condution aug 17" and have it auto-fill that into a project/subproject called "Condution" if it exists.
Describe the solution you'd like
After parsing and removing date information, search for / for (\w+)$/ in the task name. If it exists, look for a project/subproject named $1.strip().lower(). If that also exists, then add it to that project and remove the last two words from the task name.
Additional context
Ignore the time stamp I am too excited about Ideaflow.
Is your feature request related to a problem? Please describe. I hate having to click on tasks in unsorted and put them in a project. It'd be nice to be able to write "Hide under a rock for condution aug 17" and have it auto-fill that into a project/subproject called "Condution" if it exists.
Describe the solution you'd like After parsing and removing date information, search for
/ for (\w+)$/
in the task name. If it exists, look for a project/subproject named$1.strip().lower()
. If that also exists, then add it to that project and remove the last two words from the task name.Additional context Ignore the time stamp I am too excited about Ideaflow.