Current behavior
z .. / z ... / z .... navigate 1/2/3 levels up
Desired behavior
Extend dot-notation to support a trailing path segment:
| Shorthand |
Equivalent |
z .../some/path |
z ../../some/path |
z ..../some/path |
z ../../../some/path |
Motivation
The current shorthand breaks down as soon as a relative path follows — you're forced back to explicit ../../ syntax. Extending dots to work as a path prefix keeps the notation consistent.
Current behavior
z ../z .../z ....navigate 1/2/3 levels upDesired behavior
Extend dot-notation to support a trailing path segment:
z .../some/pathz ../../some/pathz ..../some/pathz ../../../some/pathMotivation
The current shorthand breaks down as soon as a relative path follows — you're forced back to explicit
../../syntax. Extending dots to work as a path prefix keeps the notation consistent.