Joshua Batty
Joshua Batty
Would be really great if you could define the direction of the ofxUITabBar, at the moment it wastes a lot of screen space if you only have a few canvases...
We should modify the `sway-core` API so we have an option to not re-compile `std`, `core`, and any dependencies more than once. Instead, once these have been produced, we should...
I'm just getting everything set up on my new machine and noticed that `on_enter` isn't adding `//` or `///` in the editor even though I have both settings set to...
After the client sends a shutdown request to the server, it then sends a final exit notification. The server should then instantly kill the running process so it doesn't remain...
# Problem Each LSP call to the `did_change` function triggers compilation via calling `forc_pkg::check()`. Currently this function takes ~ 1 second to return. If the user is typing then we...
The below code is returning as `ParseErrorKind::ExpectedAnItem` error. This error is causing the `parse` function to bail out of creating a ParseProgram meaning the LSP doesn't have an AST to...
Here is a list of optimisations that can be made to improve the responsiveness of the language server in response to did change events. Times are measured against the `benchmark`...
## Description This PR does 3 optimizations. The timings below are measured against the LSP benchmarking project. 1. Disable running DCA & control flow analysis, for didChange events `39.544ms` 2....
Today I noticed a panic when using the language server. It only seemed to happen very rarely so I wrote the below test. Also, running the test with a single...
This lock file was originally introduced in #5094 While it does solve the original issue in #4893 , it can lead to problems when the IDE was shutdown in a...