Note Naming Tips
Tips for naming notes (see Note Name):
-
Keep top-level hierarchy items short and expand naming as you go deeper.
- This is currently necessary due to VSCode quick pick limitations, which require truncating search results. See thorg.visualPreferences.vsc.quickPick.maxLabelLength: Max Length of VSCode Quick Pick Labels (Before Truncation) to adjust the truncation length.
-
Use singular naming for all notes, including parent notes that contain groups or lists. While plural naming works technically (similar to namespace design in code), singular naming creates a more visually cohesive and readable structure throughout your system.
- Examples:
- Use "Project" instead of "Projects" for a parent note containing multiple projects
- Use "Task" instead of "Tasks" for a note grouping several tasks
- Concrete example:
- ā
tech.bash.lang.shell-variable.RANDOM - ā
tech.bash.lang.shell-variables.RANDOM
- ā
- Examples:
-
Don't overthink it. You can refactor later when you have more context.