You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Duplicate of #187 (which doesn't require a todo/ subdir, which I find unnecessary; the filenames are already specific enough).
Also, this can be easily done via customization in todo.cfg, so you don't have to wait for the feature to be implemented - the feature would only make this even easier.
For anyone else looking for how to implement the described customization in todo.cfg, here's what I added to mine so that I could have project-specific todo.txt files (eg, in a git repo):
❯ head ~/.todo.cfg
# === EDIT FILE LOCATIONS BELOW ===# Your todo.txt directory (this should be an absolute path)iftest -f "${PWD}/todo.txt";thenexport TODO_DIR=$PWDelseexport TODO_DIR=$HOME/todo.txt
fi# Your todo/done/report.txt locations
Note that this will create the done.txt,report.txt, etc files in the same directory.
@jesseops good suggestion. I'm in the same situation, but trying to keep todo.cfg in a Box Sync directory and in my case, the admins insist on keeping the default Box Sync name. Properly escaping the space across different machines is a problem I haven't solved yet, but this little function is helpful to the point that adding it in documentation or comments would be a welcome feature.
feature
check current working directory for todo/ directory.
The text was updated successfully, but these errors were encountered: