Tomochika Hara
Tomochika Hara
Hi, I'm interested in this issue. If import statements are the following, ``` import a import b import a.{one} import a.{two} ``` I guess we finally expect such as: ```...
Thanks @lpil, I read #860. I understood we need to modify AST for grouping imports, i.e. update this language semantics and fix its parser. Sure, this may be a large...
> the AST as the information required to detect comments and line breaks > the formatter writes comments and additional empty lines in blocks. Oh, I missed it. It seems...
When we migrate Slack legacy app to own custom apps, it may be an obstacle. > but why can't you use the globally configured app? I want to migrate Slack...
You don't need cURL/libxml2 or other hacks to avoid this problem. Just use [replace directive](https://go.dev/ref/mod#go-mod-file-replace) in go.mod and we can download this module from GitHub directly. such as: ``` replace...
@mitar That doesn't means that replace directive must not be used in production. e.g. kubernetes https://github.com/kubernetes/kubernetes/blob/22f3ce5e5ebfb62a6b86ab95bf0ef05588b8d297/go.mod#L226C1-L229
I see. However, we could also says `replace directive` still has been useful to executable binaries in closed infrastructures.
@amckinney We also needs `--exclude-path` option's support. I found #20 but it has closed. Are there something to obstacle to support such options?
@UnGast Which SDL2 version do you use? My build is successful with SDL2 2.0.10, the latest version on Homebrew. SDL_PIXELFORMAT was anonymous enum and we has been able to use...
@UnGast There are differences in SDL2 versions published by different package managers or platforms. All of package managers do not always follow new versions immediately, even if SDL2 published new...