Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 1.16 KB

svelte.md

File metadata and controls

58 lines (49 loc) · 1.16 KB

Svelte

Inlay Hints

Zed sets the following initialization options for inlay Hints:

"inlayHints": {
  "parameterNames": {
    "enabled": "all",
    "suppressWhenArgumentMatchesName": false
  },
  "parameterTypes": {
    "enabled": true
  },
  "variableTypes": {
    "enabled": true,
    "suppressWhenTypeMatchesName": false
  },
  "propertyDeclarationTypes": {
    "enabled": true
  },
  "functionLikeReturnType": {
    "enabled": true
  },
  "enumMemberValues": {
    "enabled": true
  }
}

to make the language server send back inlay hints when Zed has them enabled in the settings.

Use

"lsp": {
  "$LANGUAGE_SERVER_NAME": {
    "initialization_options": {
      "configuration": {
        "typescript": {
          ......
        },
        "javascript": {
          ......
        }
      }
    }
  }
}

to override these settings.

See https://github.com/microsoft/vscode/blob/main/extensions/typescript-language-features/package.json for more information.