Alex
Alex
@GuiltyDolphin, thank you. Currently I use both of them - for case if in the future the `NO_METADATA_DOWNLOAD` will be legacy or deprecated (Or you will merge your branch into...
I need read-only mode for code-workspace's root-folders.
I have no so much time. May do but not so soon.
You could assign this to me. Then I don't forget. 🤔
First of all I should say that you solution is highly specialised solution. I mean that will work only with spaces in dir name, but not for other punctuation, special...
@Canop As I see in the [docs](https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.display) > If you would like an implementation which escapes the path please use [Debug](https://doc.rust-lang.org/std/fmt/macro.Debug.html) instead. ```rust use std::path::PathBuf; fn main() { let path...
Sorry, unfortunately I have no time as well as forces to resolve conflicts and make improvements to this PR. If anyone could take it, just copy, rebase and do not...
I suppose that there's Github's "boo is not bool"-problem. Try to use strings like 'false' or if you really need `bool` - pass empty string `""` or `${{ null }}`,...
@probonopd, looking at [that line][line] I suppose the value is interpreting as following: - `true` if value == `"true"` (string) - `false` (actually `undefined`, sic!) for any other value. Also...