We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice to add one task after another when entering a large number of tasks.
Keyboard shortcut ideas:
When inside the "Add task" modal, we could:
Enter
Ctrl-Enter
The text was updated successfully, but these errors were encountered:
In the mean time, here is a bash script to do something similar at the terminal:
#!/bin/bash echo "Enter the project name:" read project_name while true; do echo "Enter task description:" read task_description task add proj:"$project_name" "$task_description" done
Note: Press Ctrl-c when finished
Sorry, something went wrong.
No branches or pull requests
It would be nice to add one task after another when entering a large number of tasks.
Keyboard shortcut ideas:
When inside the "Add task" modal, we could:
Enter
to add the task and return to the task list.Ctrl-Enter
to add and remove some/all fields for the next taskThe text was updated successfully, but these errors were encountered: