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

Fully featured D language extension for Visual Studio Code using Serve-D

Results 136 code-d issues
Sort by recently updated
recently updated
newest added

See talk http://dconf.org/2022/index.html#vijayn and http://dconf.org/2021/online/index.html#max

New since https://code.visualstudio.com/updates/v1_70#_drop-into-editor-api When dropping in files from a stringImportPaths folder, we could resolve the path to import the file and write down `import("...")` into the code. Not sure yet...

- syntax highlighting - autocomplete (similar to diets integration)

```d void function(int a, string b) doIt; doIt(50, "aaa"); //CTRL+Space does not highlight the current parameter here ``` Default function: ![image](https://user-images.githubusercontent.com/10136262/182497254-acd777a6-8e6f-4e6b-b1c3-f7751fa018ad.png) Function pointer: ![image](https://user-images.githubusercontent.com/10136262/182497217-071af1ab-0a1a-4cf8-a675-4b694f411fca.png) It is possible to notice that...

bug

Reproduces both with latest available from VSCode marketplace and with v0.23.2 (latest release on github). Repro steps: 1. Create a new dub project (dub init) 2. Put arsd-official:simpledisplay in list...

1. Installed official VSCode on RHEL9 with RPM 2. Installed official DMD with RPM 3. Installed code-d When activated for the first time, code-d told me it couldn't find serve-d,...

Although we can get inline documentation, it would be pretty good to have the properties on wiki

See https://github.com/microsoft/vscode/wiki/Semantic-Highlighting-Overview would need proprietary serve-d RPC extension for now, but would be useful to consistently highlight functions as functions, etc.

syntax highlighting

Hello, After some time, autocompiletition stops working in VS code. I use Ubuntu server over SSH. This one works with packages from stdlib, but with my custom modules and modules...