Skip to content
New issue

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

Enhancement: Bulk Add (Brain Dump) #77

Open
simonwjackson opened this issue Sep 8, 2023 · 1 comment
Open

Enhancement: Bulk Add (Brain Dump) #77

simonwjackson opened this issue Sep 8, 2023 · 1 comment
Labels
enhancement New feature or request

Comments

@simonwjackson
Copy link

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:

  • press Enter to add the task and return to the task list.
  • press Ctrl-Enter to add and remove some/all fields for the next task
@simonwjackson
Copy link
Author

simonwjackson commented Sep 8, 2023

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

@DCsunset DCsunset added the enhancement New feature or request label Sep 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants