We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wouldn't it be better if toAbsGlob('../a') could return '/dev/a' instead of '/dev/foo/../a'?
toAbsGlob('../a')
'/dev/a'
'/dev/foo/../a'
Same thing for tilde: toAbsGlob('~/a') should return '/path/to/my/home/a' instead of '/dev/foo/~/a'
toAbsGlob('~/a')
'/path/to/my/home/a'
'/dev/foo/~/a'
The text was updated successfully, but these errors were encountered:
is this based on actual usage or theoretical based on a typo in the readme?
Sorry, something went wrong.
Actual usage :)
Successfully merging a pull request may close this issue.
Wouldn't it be better if
toAbsGlob('../a')
could return'/dev/a'
instead of'/dev/foo/../a'
?Same thing for tilde:
toAbsGlob('~/a')
should return'/path/to/my/home/a'
instead of'/dev/foo/~/a'
The text was updated successfully, but these errors were encountered: