Ardis Lu
Ardis Lu
Can this issue be reopened? This is still an issue in the latest version of Deno (v1.32.5). I just tested OP's code and it works as-is in web browser (Chrome...
Thank you! Just pushed a commit to update all the Remix images in the developer mode tutorial so they reflect the current UI.
@fcollonval Sure, I gave it a shot. I believe the issue is that the path ends up unescaped when it gets passed to various functions in `git.py`. But in this...
Thought about it some more and realized it'd be much easier and simpler to just move the same `quote` logic directly into `execute`. Created #1214 to do that. Confirmed that...
If I have a folder with the literal name: ``` repo%20with%20spaces%20in%20its%20name ``` jupyterlab-git does not recognize that any git repository exists in this folder (it shows the "You are not...
> So it means that with this PR if the repository is named `repo with spaces in its name` it will actually be cloned within a folder named `repo%20with%20spaces%20in%20its%20name`. Is...
Thank you for the feedback! On point 1, your suggestion looks like a much more elegant/efficient way to implement the `testInitialLiquidity` test. I think it could be implemented with a...
Regarding ordering by older -> newer instead of newer -> older, I picked this ordering to match how [`nvm`](https://github.com/nvm-sh/nvm) sorts. I checked some other tools and it looks like this...
Rebased the commit against the latest updates in `dev`, and also amended to sort `get_installable_versions()`: ```diff - for version in get_installable_versions(): + for version in sorted(get_installable_versions(), key=lambda v: [int(s) for...