dlang-vscode
dlang-vscode copied to clipboard
Support for the D Programming Language for Visual Studio Code
It's been 1 year since the deprecation notice, 2 years since the last commit before that, and 3 years since the last tagged version. I think we can safely say...
I think you're doing a great job, and your extension has the potential of being the standard for dlang, even better than code-d/serve-d. It's great that you release often and...
I installed the plugin, it tried to fetch and build dependent tools. This failed pretty spectacularly. In addition to not working, it also took ages to build! Why wouldn't we...
Example: ``` source/mir/ndslice/dynamic.d(419,27): Error: CTFE failed because of previous errors in isPermutation source/mir/ndslice/dynamic.d(419,9): while evaluating: static assert([3LU, 0LU, 1LU, 2LU].isPermutation) ```
Maybe because they was multiline?
Currently, documentation is not always displayed properly. Some characters used in markdown are not escaped. For example, any `*` pair will be interpreted by VSCode and the text in between...
Part of the problem seems to be the use of `--ast` with dscanner. Using `dscanner --ast` with [std.datetime](https://github.com/dlang/phobos/blob/v2.073.0/std/datetime.d) takes upwards of a minute and generates a 60 megabyte file. Using...
Hello. Currently it is not possible to ctrl+click module name in the import list and go to actual source file. DCD complains in the background that: ``` 2017-02-28T23:57:13.740:autocomplete.d:findDeclaration:135 Could not...
With this code autocomplete works fine: ``` D import deimos.ncurses; void main() { deimos.ncurses.initscr(); } ``` But with this not: ``` D import deimos.ncurses; alias NC = deimos.ncurses; void main()...