code-d
code-d copied to clipboard
Fully featured D language extension for Visual Studio Code using Serve-D
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:  Function pointer:  It is possible to notice that...
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.
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...