forked from denoland/vscode_deno
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add restart language server command (denoland#385)
Resolves denoland#372
- Loading branch information
Showing
6 changed files
with
147 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. | ||
|
||
export const ENABLEMENT_FLAG = "deno:lspReady"; | ||
export const EXTENSION_ID = "denoland.vscode-deno"; | ||
export const EXTENSION_NS = "deno"; | ||
export const EXTENSION_TS_PLUGIN = "typescript-deno-plugin"; | ||
export const LANGUAGE_CLIENT_ID = "deno-language-server"; | ||
export const LANGUAGE_CLIENT_NAME = "Deno Language Server"; | ||
export const TS_LANGUAGE_FEATURES_EXTENSION = | ||
"vscode.typescript-language-features"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.