Skip to content

Commit

Permalink
fix: enable markdown in completion details
Browse files Browse the repository at this point in the history
  • Loading branch information
kokovtsev committed Oct 7, 2023
1 parent 3e047ef commit 12ff291
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/language/json/jsonWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ export class JSONWorker {
return resolvePath(base, relativePath);
}
},
schemaRequestService: createData.enableSchemaRequest ? defaultSchemaRequestService : undefined
schemaRequestService: createData.enableSchemaRequest
? defaultSchemaRequestService
: undefined,
clientCapabilities: jsonService.ClientCapabilities.LATEST
});
this._languageService.configure(this._languageSettings);
}
Expand Down

0 comments on commit 12ff291

Please sign in to comment.