Skip to content

Commit

Permalink
Release version 0.1.30 (#716)
Browse files Browse the repository at this point in the history
Co-authored-by: Jeroen Van Antwerpen <[email protected]>
  • Loading branch information
JVApen and Jeroen Van Antwerpen authored Nov 13, 2024
1 parent 91022b2 commit 0bf5af2
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## Version 0.1.30: November 13, 2024

* Added option to disable hovers [#703](https://github.com/clangd/vscode-clangd/pull/703)
* Added option to disable clangd [#636](https://github.com/clangd/vscode-clangd/pull/636)
* Key bindings are restricted to the supported files [#690](https://github.com/clangd/vscode-clangd/pull/690)
* 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)

## Version 0.1.29: July 12, 2024

* vscode-clangd now exposes an [API](https://github.com/clangd/vscode-clangd/blob/master/api/README.md)
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 12 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-clangd",
"displayName": "clangd",
"description": "C/C++ completion, navigation, and insights",
"version": "0.1.29",
"version": "0.1.30",
"publisher": "llvm-vs-code-extensions",
"license": "MIT",
"homepage": "https://clangd.llvm.org/",
Expand Down Expand Up @@ -76,7 +76,10 @@
"untrustedWorkspaces": {
"supported": "limited",
"description": "In restricted mode clangd.path and clangd.arguments are not respected.",
"restrictedConfigurations": ["clangd.path", "clangd.arguments"]
"restrictedConfigurations": [
"clangd.path",
"clangd.arguments"
]
}
},
"contributes": {
Expand Down Expand Up @@ -172,14 +175,14 @@
"description": "Opacity of inactive regions (used only if clangd.inactiveRegions.useBackgroundHighlight=false)"
},
"clangd.enableCodeCompletion": {
"type": "boolean",
"default": true,
"description": "Enable code completion provided by the language server"
"type": "boolean",
"default": true,
"description": "Enable code completion provided by the language server"
},
"clangd.enableHover": {
"type": "boolean",
"default": true,
"description": "Enable hovers provided by the language server"
"type": "boolean",
"default": true,
"description": "Enable hovers provided by the language server"
},
"clangd.enable": {
"type": "boolean",
Expand Down Expand Up @@ -394,4 +397,4 @@
]
}
}
}
}

0 comments on commit 0bf5af2

Please sign in to comment.