serve-d icon indicating copy to clipboard operation
serve-d copied to clipboard

D LSP server (dlang language server protocol server)

Results 149 serve-d issues
Sort by recently updated
recently updated
newest added

Probably needs #291 to be really usable e.g. ```d struct Foo { int x; // search for references of this `x` } Foo foo() { } void main() { auto...

New for JS/TS in vscode: JavaScript and TypeScript now support running Go to Definition on the return keyword to quickly jump to the top of the function being returned from....

Right now all potential imports are visited when walking references. However when we have selective imports we can better decide if we even need to walk the selective import at...

e.g. ``` import std.stdio : writeln; void main() { readln(); } ``` should suggest `std.stdio : readln`, adding to the existing selective import. When there is an import coming from...

Hi ddevs, i got this error starting code-d & serve-d: 2023-01-07T16:57:21.049 [info] app.d:148:main Setting language to pt serve-d standalone v0.8.0-beta.10 Included features: "d", "workspaces" Built: Sat Jan 7 02:42:48 2023...

Hello, I have detected a problem or detail that makes me late to find out about certain errors: I'm not sure if it's my computer, but I tried it on...

(The other side of this was reported at https://github.com/zed-industries/zed/issues/11060 ) Serve-d crashes when it gets: ``` {"jsonrpc":"2.0","id":1,"result":null,"error":null} ``` Essentially according to [Postel's Law](https://en.wikipedia.org/wiki/Robustness_principle), we should be a bit more tolerant...

I am on the Nightly release channel of serve-d on `osx aarch64`. ``` serve-d standalone v0.8.0-beta.15 Included features: "d", "workspaces" Built: Thu Apr 4 02:26:06 2024 with compiler LDC v2.107...

bug

So in order to standardize providing build tasks, there is a new LSP inspired thing called Build Server Protocol (BSP). It seems like serve-d could benefit from this, enabling more...

enhancement