Files
oak-gpui/docs/src/languages/svelte.md
T
Marshall Bowers 3220986fc9 Format docs with Prettier (#8134)
This PR formats the docs with Prettier.

Release Notes:

- N/A
2024-02-21 13:21:22 -05:00

1.2 KiB

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.