The GDScript LSP Client is works correctly !

This commit is contained in:
Geequlim
2019-06-25 17:16:59 +08:00
parent 1844dd570b
commit 61e1cafdfe
6 changed files with 259 additions and 30 deletions

View File

@@ -2,7 +2,7 @@
"name": "godot-tools",
"displayName": "godot-tools",
"icon": "icon.png",
"version": "1.0.0",
"version": "0.9.0",
"description": "Tools for game development with godot game engine",
"repository": "https://github.com/GodotExplorer/godot-tools",
"publisher": "geequlim",
@@ -25,7 +25,16 @@
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
},
"contributes": {
"commands": [],
"commands": [
{
"command": "godot-tool.open_editor",
"title": "Godot Tools: Open workspace with Godot editor"
},
{
"command": "godot-tool.run_project",
"title": "Godot Tools: Run workspace as Godot project"
}
],
"configuration": {
"type": "object",
"title": "Godot Tools configuration",
@@ -33,7 +42,12 @@
"godot_tools.gdscript_lsp_server_port": {
"type": "number",
"default": 6008,
"description": "The websocket server port of the GDScript Langugae Protocol server"
"description": "The websocket server port of the GDScript langugae server"
},
"godot_tools.editor_path": {
"type": "string",
"default": "",
"description": "The absolute path to the Godot editor executable"
}
}
},