Open
Description
Outputting nice short names (just note.md
) is great for readability when flicking through your notes. For compatibility with other commands though (e.g. cat
: #9), you need a way to easily get the full file path (/home/tim/notes/note.md
).
There's a couple of options:
- Only output short names to a TTY, but automatically output full paths instead when piping.
- Add a
notes path
command, which gives you the path to a given note (useful generally), or transforms a pipe of short note names into full note paths. E.g.notes find | notes path
to get the full paths for every note you have.
Thoughts welcome!