Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ export function activate(context: vscode.ExtensionContext) {
// Notify the server about file changes to '.clientrc files contained in the workspace
fileEvents: vscode.workspace.createFileSystemWatcher("**/.clientrc"),
},
markdown: {
isTrusted: true
}
};

// Create the language client and start the client.
Expand Down
2 changes: 1 addition & 1 deletion server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ connection.onHover(async (request: HoverParams) => {
// getting runtime import errors to remove this deprecation warning.
const contents = {
value: obj.hover,
language: "nushell",
kind: "markdown"
};

if (obj.hover != "") {
Expand Down