Runi-c
Runi-c
The reason it's giving you 405 METHOD NOT ALLOWED is because you've got a typo/incorrect key for the input object for `bot.deleteMessage()`. You assign the keys `channelID` and `messageIDs` but...
Check for errors before attempting to delete the message. The response object being null probably means Discord rejected the `sendMessage` request.
Your v2 repro code isn't calling `.promise()` on the `s3Client.getObject(...)` calls, so your `Promise.all(...)` isn't actually waiting for anything. You can confirm this by hovering `result` and seeing what TypeScript...
Running into this issue as well. Any workarounds?
This seems to be a problem in `vscode-uri` (which is used by coc.nvim) with a long history: https://github.com/microsoft/vscode-languageserver-node/issues/228, https://github.com/microsoft/vscode/issues/75027, https://github.com/microsoft/vscode/issues/2990 Since VSC stores lots of metadata by string URIs, they...
Ah. I expected the official client to encode spaces and "%"s, but it appears to just send them as plaintext. So you're right, we shouldn't just uri-decode. I wonder how...
Looks like this was brought up before in #18. The fundamental cause is that the racket server relies (heavily) on the editor class `text%` provided by `racket/gui/base`, and even just...
@PolyMeilex Would you be open to a PR migrating the current functionality of `cargo-wgsl` to LSP using `tower-lsp` as suggested above? Potentially with a companion PR for `vscode-wgsl` to support...
Same issue, in my case `pango-view` does render color emoji but `sharp` does not. Have spent multiple hours playing with fontconfig configs and debug vars, as well as different fonts....
That makes sense actually. It sounds like the current behavior is from https://github.com/bevyengine/naga_oil/pull/31? If there's already an exception carved out for identifiers following `.`, maybe an alternative here could be...