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
Using todo.sh ls prints a line at the end saying how many tasks are shown, e.g:
todo.sh ls
todo.sh ls +todo 45 of 65 tasks shown
However with this addon, it always states that all tasks are shown but this would not be correct if we are hiding something.
Current representative output:
todo.sh ls task 1 +todo task 2 +todo task 3 +other 3 of 3 tasks shown todo.sh hide +todo task 3 +other 3 of 3 tasks shown
Output should be:
todo.sh ls task 1 +todo task 2 +todo task 3 +other 3 of 3 tasks shown todo.sh hide +todo task 3 +other 1 of 3 tasks shown
The text was updated successfully, but these errors were encountered:
todo.sh hide @server is the same as todo.sh ls -@server so you can replace whole hide script with this
todo.sh hide @server
todo.sh ls -@server
hide
#!/bin/sh shift 1 TERMS=$(echo "$*" | sed 's/ \+/ -/') "$TODO_FULL_SH" list -$TERMS
and it will show correct count of shown tasks too.
Sorry, something went wrong.
No branches or pull requests
Using
todo.sh ls
prints a line at the end saying how many tasks are shown, e.g:However with this addon, it always states that all tasks are shown but this would not be correct if we are hiding something.
Current representative output:
Output should be:
The text was updated successfully, but these errors were encountered: