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
I just noticed that a numbered arg that expands to a path seems kind of busted (at least the rendering of it):
In this screenshot, I've run ls fastjson and then view 14. ucm then prints the equivalent command with 14 substituted, which should look like
ls fastjson
view 14
view fastjson.some
however, it looks like
view RelativePath' (Relative {unrelative = Path {toSeq = fromList [NameSegment {toUnescapedText = "fastjson"}]}}).some
yet we do seem to view the term fine (as if I did type view fastjson.some)
I bisected the bug to this commit; @sellout any ideas?
The text was updated successfully, but these errors were encountered:
Oh, I think it's because Path has a derived Show instance now: 07fcc66#diff-95fdd8db7d2a6c9350d78132d3614956fa87a627347ec673f60fb2131a75007cL100
Path
Show
This makes lines like this incorrect, since they were rendering paths with show, not Path.toText.
show
Path.toText
Sorry, something went wrong.
9a1effa
mitchellwrosen
Successfully merging a pull request may close this issue.
I just noticed that a numbered arg that expands to a path seems kind of busted (at least the rendering of it):
In this screenshot, I've run
ls fastjson
and thenview 14
. ucm then prints the equivalent command with 14 substituted, which should look likehowever, it looks like
yet we do seem to view the term fine (as if I did type
view fastjson.some
)I bisected the bug to this commit; @sellout any ideas?
The text was updated successfully, but these errors were encountered: