Remove terminal output when adding or deleting todos #364
-
Is there a way (maybe an option I have overlooked) to disable the terminal output l when adding or deleting todos? For example, when I type 1 todo message I find this information rather unnecessary and would like to not have it printed. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can put
into your (There's the |
Beta Was this translation helpful? Give feedback.
You can put
into your
todo.cfg
for a permanent configuration, or useTODOTXT_VERBOSE=0 todo.sh ...
for one-time use.(There's the
-v
command-line option to increase the verbosity (from the default 1 to 2), but no corresponding option to decrease it, so the full configuration variable has to be used. If you've silenced these messages as described, you can get back the messages via-v
, as that then increases the level from 0 to 1 again.)