orgnav
orgnav copied to clipboard
Command to toggle full display of paths
For example,
* One
** Two
*** Three
** Four
can be display as
- One
- One -> Two
- One -> Two -> Three
- One -> Four
in helm. Use a keybinding of M-p maybe (for path)
The rationale is to make search based of the path to a node easier (I find that I am tagging children with their parent's name to work around this).
The rationale for not doing this by default is that:
- It is really verbose
- The verbosity can not play well with fuzzy searches
The toggling should retain the current search
I also have an option for this in helm-org-rifle. If you decide to implement this, you might want to look at how I did it: I use a persistent, hidden buffer to fontify the paths (if you choose to fontify them, that is) to improve performance over the org-native function.