Skip to content

Commit 0bf5af2

Browse files
JVApenJeroen Van Antwerpen
andauthored
Release version 0.1.30 (clangd#716)
Co-authored-by: Jeroen Van Antwerpen <[email protected]>
1 parent 91022b2 commit 0bf5af2

File tree

3 files changed

+22
-12
lines changed

3 files changed

+22
-12
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## Version 0.1.30: November 13, 2024
4+
5+
* Added option to disable hovers [#703](https://github.com/clangd/vscode-clangd/pull/703)
6+
* Added option to disable clangd [#636](https://github.com/clangd/vscode-clangd/pull/636)
7+
* Key bindings are restricted to the supported files [#690](https://github.com/clangd/vscode-clangd/pull/690)
8+
* Allow "clangd.path" to point to a shell script (restoring behavior from VS Code 1.91) [#708](https://github.com/clangd/vscode-clangd/pull/708), [#715](https://github.com/clangd/vscode-clangd/pull/715)
9+
310
## Version 0.1.29: July 12, 2024
411

512
* vscode-clangd now exposes an [API](https://github.com/clangd/vscode-clangd/blob/master/api/README.md)

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-clangd",
33
"displayName": "clangd",
44
"description": "C/C++ completion, navigation, and insights",
5-
"version": "0.1.29",
5+
"version": "0.1.30",
66
"publisher": "llvm-vs-code-extensions",
77
"license": "MIT",
88
"homepage": "https://clangd.llvm.org/",
@@ -76,7 +76,10 @@
7676
"untrustedWorkspaces": {
7777
"supported": "limited",
7878
"description": "In restricted mode clangd.path and clangd.arguments are not respected.",
79-
"restrictedConfigurations": ["clangd.path", "clangd.arguments"]
79+
"restrictedConfigurations": [
80+
"clangd.path",
81+
"clangd.arguments"
82+
]
8083
}
8184
},
8285
"contributes": {
@@ -172,14 +175,14 @@
172175
"description": "Opacity of inactive regions (used only if clangd.inactiveRegions.useBackgroundHighlight=false)"
173176
},
174177
"clangd.enableCodeCompletion": {
175-
"type": "boolean",
176-
"default": true,
177-
"description": "Enable code completion provided by the language server"
178+
"type": "boolean",
179+
"default": true,
180+
"description": "Enable code completion provided by the language server"
178181
},
179182
"clangd.enableHover": {
180-
"type": "boolean",
181-
"default": true,
182-
"description": "Enable hovers provided by the language server"
183+
"type": "boolean",
184+
"default": true,
185+
"description": "Enable hovers provided by the language server"
183186
},
184187
"clangd.enable": {
185188
"type": "boolean",
@@ -394,4 +397,4 @@
394397
]
395398
}
396399
}
397-
}
400+
}

0 commit comments

Comments
 (0)