Skip to content

Latest commit

 

History

History
142 lines (98 loc) · 7.75 KB

CHANGELOG.md

File metadata and controls

142 lines (98 loc) · 7.75 KB

Change Log

Version 0.1.28: March 20, 2024

  • Fix a regression in the behaviour of clangd.restart introduced in 0.1.27 #599

Version 0.1.27: March 16, 2024

  • Trigger signature help when accepting code completions, where appropriate #390
  • Gracefully handle clangd.restart being invoked when the extension hasn't been activated yet #502
  • Add an option to disable code completion #588

Version 0.1.26: December 20, 2023

  • Bump @clangd/install dependency to 0.1.17. This works around a bug in a dependent library affecting node versions 18.16 and later that can cause the downloaded clangd executable to be corrupt after unzipping.

Version 0.1.25: August 15, 2023

  • Combine inactive region style with client-side (textmate) token colors #193. Requires clangd 17 or later.
    • The default inactive region style is reduced opacity. The opacity level can be customized with clangd.inactiveRegions.opacity.
    • An alternative inactive region style of a background highlight can be enabled with clangd.inactiveRegions.useBackgroundHighlight=true. The highlight color can be customized with clangd.inactiveRegions.background in workbench.colorCustomizations.
  • The variable substitution ${userHome} is now supported in clangd configuration setting values #486

Version 0.1.24: April 21, 2023

  • Fix an undefined object access in ClangdContext.dispose() #461
  • Remove custom secure configuration items and rely on workspace trust from vscode #451

Version 0.1.23: October 23, 2022

  • Update vscode-language client to 8.0.2, with apparent bugfixes
  • clangd autoupdate: correctly detect versions of distro-modified clangd
  • clangd autoupdate: improved error messages
  • fix clangd not detected due to permission issues #267

Version 0.1.22: October 12, 2022

  • Type-hierarchy: Prefer standard/extension version of the feature depending on the clangd, rather than showing both.

Version 0.1.21: July 15, 2022

  • Fix: clangd status bar is missing, #362

Version 0.1.20: July 12, 2022

  • Update to vscode-languageclient 8. this enables standard LSP inlay hints with a recent clangd, and may carry other behavior changes.
  • Fix inlay-hints not shown when using a standard-inlay-hint-supported clangd. #342
  • "toggle inlay hints" command now respects the 4 states on/off/onUnlessPressed/offUnlessPressed
  • Commit characters in code completion are explicitly disable (previously ignored due to a bug, see [#357]#357)).

Version 0.1.19: July 11, 2022

  • This is a rollback to address regressions in code completion introduced by 0.1.18.
  • Unfortunately this breaks inlay hints again by reverting #342.

Version 0.1.18: July 11, 2022

  • Fix inlay-hints not shown when using a standard-inlay-hint-supported clangd. #342

Version 0.1.17: May 4, 2022

  • Fix errors in "download language server" command introduced in 0.1.16. #325

Version 0.1.16: April 25, 2022

  • Fix: "command clangd.inlayHints.toggle already exists" error on restarting clangd, #302
  • Inlay hints: switch to use VSCode's native implementation, #301
  • Bundle extension code into a single js file, reducing vsix file size, #287

Version 0.1.15: January 27, 2022

  • Fix: clangd extension fails to restart, #291
  • Legacy semantic-highlighting is no longer supported, #273

Version 0.1.14: January 25, 2022

  • Inlay hints: fully support clangd's documented protocol extension: arbitrary types and the position property.
  • Inlay hints: cache hints more and refresh them less often.
  • Inlay hints: respect editor.inlayHints.enabled, and provide a toggle command.
  • CUDA: use VSCode's built-in language detection
  • Switch header/source: constrain to applicable languages, add to context menu
  • Releases now pushed to OpenVSX as well as VSCode Marketplace

Version 0.1.13: August 24, 2021

  • Add option to suppress warning about the Microsoft C/C++ extension incompatibility #221

Version 0.1.12: July 19, 2021

  • Clicking on status bar opens output panel, #177
  • Commands to open user and project clangd confguration files #181
  • Inlay hints support for parameters #168 and types #188. Requires a clangd built after llvm/llvm-project@cea736e5b and -inlay-hints flag.

Version 0.1.11: March 2, 2021

  • Prompt when workspace overrides clangd.path and clangd.arguments, #160
  • Fix semanticTokens flickering issue, #150
  • clangd.path takes vscode.workspace.rootPath into account if available. #153

Version 0.1.10: February 15, 2021

  • Warn about conflict with ms-vscode.cpptools, #141

Version 0.1.9: January 12, 2021

  • Add "show AST" feature (clangd 12 or later), #104
  • Add "restartAfterCrash" option, #108
  • Add "serverCompletionRanking" option, #63
  • Client side will not watch config files for clangd 12 or later, as clangd natively supports it #128
  • Fix: improve workspace-symbol ranking for unqualified name, #81
  • Fix: error on restarting clangd when using onConfigChanged, #98
  • Fix: Resrict "show memory usage" button on its own view, #97

Version 0.1.8: November 10, 2020

  • file watcher support for compile_commands.json, #33
  • restart clangd will respect the latest VSCode config, #78
  • improvement for type-hierarchy, #44, #68
  • add tree view for clangd's $/memoryUsage feature (clangd 12 or later), #86

Version 0.1.7: September 7, 2020

  • (experimental) Type hierarchy support, #20
  • Switch to official semanticToken API (required clangd 11), #54
  • Fix autoinstall writes local config in remote settings, #56, #65