Skip to content

v0.0.22 - semantic highlighting, Inlay hints, performance, ...

Compare
Choose a tag to compare
@kirides kirides released this 19 Oct 12:20
· 10 commits to master since this release

Deprecated - Please use atleast v0.0.23

  • Language Server updated kirides/DaedalusLanguageServer@3ee6716...65ae126
  • semantic highlighting: it's now easier than ever to figure out if a variable is a constant, a parameter, local or some global
    coloring is depending on the used theme
    • before:
      image
    • after:
      image
  • inlay hints
    Code_wXOZd7izti

All settings can be toggled in VS Code settings.json

 {
   // ...
   "[daedalus]": {
        // ...
        // set this to false if semantic highlighting is not wanted
        "editor.semanticHighlighting.enabled": "configuredByTheme",
        // set this to off, or offUnlessPressed if its not wanted
        "editor.inlayHints.enabled": "offUnlessPressed",
    },
}