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

Basically an option to have ```d /** Function description Params: var = thing Return: thing */ ``` Automatically injected instead of ```d /** * Function description * Params: * var...

enhancement

I stumbled in this error while modifying dub's codebase. ![image](https://github.com/Pure-D/code-d/assets/10136262/1fb12f17-8a37-4d0b-9f0f-f424e4018fe0) After I press F12, this is the location I jump into: ![image](https://github.com/Pure-D/code-d/assets/10136262/d275e026-d74a-4547-b24b-7334f852c168)

My `dub.json` contains `"targetPath": "bin/$BUILD_TYPE-$PLATFORM-$ARCH"`. Trying to simply launch debugger in VS Code shows the following error: ![2023-07-06 08-57-13 Visual Studio Code](https://github.com/Pure-D/code-d/assets/8372246/debe0074-fbb4-4e02-9599-2778f3be6219) `launch.json` contents: ```json { "version": "0.2.0", "configurations": [...

bug

Imagine the following directory structure: ``` - project root | | - dub.json | - common | - myproject | - common | - path.d ``` And such a DUB...

The PR that goes with Pure-D/serve-d#271

It would be nice, when creating a project with `> code-d:Create new Project` that it creates a `launch.json` and `task.json` with the defaults automatically. So that debugging works "out of...

enhancement
cheap

```d void f(in int delegate() x, in int y) {} ``` This renders as: ![image](https://user-images.githubusercontent.com/5387404/215534855-6ace2d36-d1f8-49e2-a9b6-3f26362f4cc8.png) The second `in` is a different color. This is somehow related to the parentheses in...

bug
syntax highlighting

The highlighting does not always work when tokens/characters are exchanged. Note: https://dlang.org/spec/ddoc.html#embedded_comments 1. The example given by the page above, also given below, does not function when ` ``` `...

bug

I got some trouble with serve-d and dcd in VSCode for the first time, and need some helps. Here are the related logs. ``` serve-d standalone v0.8.0-beta.7 Included features: "d",...

bug