We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41fbd16 commit 3ec8e34Copy full SHA for 3ec8e34
server/src/server.ts
@@ -10,8 +10,6 @@ import {
10
DidOpenTextDocumentNotification,
11
DidChangeTextDocumentNotification,
12
DidCloseTextDocumentNotification,
13
- CompletionItem,
14
- Hover,
15
} from "vscode-languageserver-protocol";
16
import * as utils from "./utils";
17
import * as c from "./constants";
@@ -21,7 +19,6 @@ import { fileURLToPath } from "url";
21
19
import { ChildProcess } from "child_process";
22
20
import { WorkspaceEdit } from "vscode-languageserver";
23
import { TextEdit } from "vscode-languageserver-types";
24
-import { OnReadOpts } from "node:net";
25
26
// https://microsoft.github.io/language-server-protocol/specification#initialize
27
// According to the spec, there could be requests before the 'initialize' request. Link in comment tells how to handle them.
0 commit comments