Skip to content

Commit

Permalink
Adjust formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
msujew committed Oct 8, 2024
1 parent fce0fd8 commit 1eb5738
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hugo/content/docs/recipes/builtin-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,10 @@ To ensure that LSP services (such as hover, outline, go to definition, etc.) wor
```ts
// Options to control the language client
clientOptions: LanguageClientOptions = {
documentSelector: [{ scheme: 'file', language: 'mydsl' }, { scheme: 'builtin', language: 'mydsl' }],
documentSelector: [
{ scheme: 'file', language: 'mydsl' },
{ scheme: 'builtin', language: 'mydsl' }
],
}
```
**Warning:** It is discouraged to set `scheme` to `'*'`, as, for example, we do not want to build a Git revision when performing a Git diff.

0 comments on commit 1eb5738

Please sign in to comment.