Qi Zhang
Qi Zhang
- Operating system/version: macOS 10.15.6 (19G73) - VSCode version: Version: 1.47.3 Commit: 91899dcef7b8110878ea59626991a18c8a6a1b3e Date: 2020-07-23T13:08:29.692Z Electron: 7.3.2 Chrome: 78.0.3904.130 Node.js: 12.8.1 V8: 7.8.279.23-electron.0 OS: Darwin x64 19.6.0 ### Settings I...
The function `isdirpath` is not extened on `AbstractPath`s. So the following code won't work: ```julia julia> cwd() |> isdirpath ERROR: MethodError: no method matching isdirpath(::PosixPath) Closest candidates are: isdirpath(::String) at...
Can the [PR #23422](https://github.com/JuliaLang/julia/pull/23422) be added to `Compat.jl`? It could be wonderful if we could use `*` or `^` for `Regex` in pre-1.3 Julia versions.
Can we have https://github.com/JuliaLang/julia/pull/31834 integrated into `Compat.jl`? It seems to be a feature of v1.3. But it could be good if we could have it for v1.0-1.2.
Since macOS 10.14 (Mojave) has been released, which provides a [Dark mode](https://developer.apple.com/design/human-interface-guidelines/macos/visual-design/dark-mode/), would you consider support the Dark mode? For example, a Dark title bar, status bar, preferences pane, and...
Some people [asked me](https://github.com/singularitti/vscode-julia-formatter/issues/36) whether they can indent with tabs instead of spaces. Can `JuliaFormatter.jl` do that?
For example, I have the following code: ```julia struct M c end struct N d end struct A a::M b::N end x = A(M(1), N(2)) lens1 = @lens _.a.c lens2...
If I want to `@cast` the `print` function, it seems to be overloaded when I am running commands with `--help` and `--version` flags. Here I add the following lines to...
Closes #450