initial working language server

This commit is contained in:
Dave Holoway
2020-04-30 11:38:15 +01:00
parent d064b9a3f4
commit 3156a2ddc2
7 changed files with 1161 additions and 1 deletions

View File

@@ -20,7 +20,8 @@
"activationEvents": [
"onCommand:android-dev-ext.view_logcat",
"onCommand:PickAndroidDevice",
"onCommand:PickAndroidProcess"
"onCommand:PickAndroidProcess",
"onLanguage:java"
],
"repository": {
"type": "git",
@@ -28,6 +29,18 @@
},
"main": "./extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Java (Android)",
"properties": {
"androidJavaLanguageServer.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
}
}
},
"commands": [
{
"command": "android-dev-ext.view_logcat",
@@ -228,6 +241,7 @@
"uuid": "^3.3.2",
"vscode-debugadapter": "^1.40.0",
"vscode-debugprotocol": "^1.40.0",
"vscode-languageclient": "6.1.3",
"ws": "^7.1.2",
"xmldom": "^0.1.27",
"xpath": "^0.0.27"