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 c37b6a6 commit 8096376Copy full SHA for 8096376
src/client.ts
@@ -8,7 +8,12 @@ import {
8
const serverOptions: ServerOptions = <Executable>{
9
command: "M2-language-server"};
10
11
-const clientOptions: LanguageClientOptions = {};
+const clientOptions: LanguageClientOptions = {
12
+ documentSelector: [
13
+ { scheme: 'file', language: 'macaulay2' },
14
+ { scheme: 'untitled', language: 'macaulay2' }
15
+ ],
16
+};
17
18
export default new LanguageClient(
19
"macaulay2-language-server",
0 commit comments