Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
01616ee985 | ||
|
29f0e6a05a | ||
|
7bc07d9ac1 |
Binary file not shown.
@@ -1,3 +1,3 @@
|
|||||||
# lspclient README
|
# Java-TX Language Server
|
||||||
|
|
||||||
This is the README for the Java-TX LSP Client.
|
This is the official Plugin for Java-TX.
|
@@ -13,12 +13,12 @@ function createClient(context: vscode.ExtensionContext): LanguageClient {
|
|||||||
const serverOptions: ServerOptions = {
|
const serverOptions: ServerOptions = {
|
||||||
run: {
|
run: {
|
||||||
command: 'java',
|
command: 'java',
|
||||||
args: ['-Xss2m', '-jar', workspaceFolder + "/JavaTXLanguageServer-1.0-SNAPSHOT-jar-with-dependencies.jar"],
|
args: ['-Xss10m', '-jar', workspaceFolder + "/JavaTXLanguageServer-1.0-SNAPSHOT-jar-with-dependencies.jar"],
|
||||||
},
|
},
|
||||||
debug: {
|
debug: {
|
||||||
command: 'java',
|
command: 'java',
|
||||||
args: [
|
args: [
|
||||||
'-Xss2m',
|
'-Xss10m',
|
||||||
'-jar',
|
'-jar',
|
||||||
workspaceFolder + '/JavaTXLanguageServer-1.0-SNAPSHOT-jar-with-dependencies.jar',
|
workspaceFolder + '/JavaTXLanguageServer-1.0-SNAPSHOT-jar-with-dependencies.jar',
|
||||||
],
|
],
|
||||||
@@ -26,7 +26,7 @@ function createClient(context: vscode.ExtensionContext): LanguageClient {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const clientOptions: LanguageClientOptions = {
|
const clientOptions: LanguageClientOptions = {
|
||||||
documentSelector: [{ scheme: 'file', language: 'java' }],
|
documentSelector: [{ scheme: 'file', pattern: '**/*.jav' }],
|
||||||
synchronize: {
|
synchronize: {
|
||||||
fileEvents: vscode.workspace.createFileSystemWatcher('**/*.jav')
|
fileEvents: vscode.workspace.createFileSystemWatcher('**/*.jav')
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user