Hugo
Hugo
Unless others have strong feelings about this, I think we can do without `jsonl` formatting to keep complexity down.
Opening files with spaces in their file name works fine for me in Linux (using neovim as an editor).
Including the following in my config, filenames with spaces still open fine: [tool] editor="nvim"
Editor.Open in internal/adapter/editor/editor.go individually escapes each filename, builds a string with a shell command, and runs the editor via a shell. At this point, the behaviour shall be dependant on...
Is there any known workaround for this? It's very annoying to have `.terraform.d` showing up there between al my _actual_ stuff in `$HOME`.
I see that #934 and #7450 have been merged into this issue, but they're quite different things. I opened #7450, and that's related to the libnotify integration (or other platform's...
I'm not interested in this feature, but I am on #7450 (which is entirely different). However, since #7450 has been merged into this issue, I'm still interested in this.
Huh, looks like `http::uri::Uri::authority` is broken for URIs that are not URLs. This should fail: ```rs let u : Uri = "mailto:[email protected]".parse().unwrap(); assert_eq!(u.authority().unwrap().as_str(), "mailto:[email protected]"); ``` So while this should work,...
The docs for [http::uri::Uri](https://docs.rs/http/latest/http/uri/struct.Uri.html) are correct in the description of an Uri: > ``` > abc://username:[email protected]:123/path/data?key=value&key2=value2#fragid1 > |-| |-------------------------------||--------| |-------------------| |-----| > | | | | | > scheme authority...
`src/uri/scheme.rs:296` bails from parsing the scheme with comment `Not a scheme` if the colon is not followed by `//`.