Skip to content

Commit

Permalink
Add menu description to fallback lsp client
Browse files Browse the repository at this point in the history
  • Loading branch information
julienvincent committed Feb 14, 2023
1 parent b75ad06 commit f6c2a6c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lsp/commands/vscode-commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ const manageHandler = async (

return {
label: `${icon} ${project_utils.getPathRelativeToWorkspace(vscode.Uri.parse(client.path))}`,
detail: api.isFallbackClient(client)
? 'Fallback client for serving workspaces or files that do not belong to a project'
: undefined,
value: client.id,
active: true,
};
Expand Down

0 comments on commit f6c2a6c

Please sign in to comment.