Daniel
Daniel
Messages sent within a certain amount of time may be displayed one-by-one, instead of batched from the initial sync. This might be a Synapse thing. This hasn't happened in a...
This was back during the single-page demo and not the extension, but it might come up again. The "weird look" could be due to nested spans or something of that...
Right now, you can only hover over the top highlight in a stack. But how would you reply to / click on highlights at the bottom?
This is a huge deal breaker for documents with multiple users working at the same time.
The following program: ```Chapel record R { var x: int; proc init(x: int) { } proc init(x: int, y: int) { init(__primitive("+", x, y)); } } ``` Emits an error...
This could be another inlay hint. Seems like it would be useful!
Draft while I don't have tests.
### Summary of Problem **Description:** ``` promotedefault.chpl:6: internal error: RES-WRA-ERS-2254 chpl version 2.0.0 Note: This source location is a guess. Internal errors indicate a bug in the Chapel compiler, and...
Today, writing `for _ in 1..10` will lead to a generic "syntax error". This is not an ideal error message, but seems like it ought to be easy enough to...
Today, you can write the following: ```Chapel var x = (_, ); ``` Which parses fine but gives the following, relatively confusing error message: ``` loop.chpl:1: In module 'loop': loop.chpl:1:...