Fixed graphdot cmd, more &str less String, unescaping URIs, lint on save/open

This commit is contained in:
Noah Santschi-Cooney 2020-07-14 21:05:52 +01:00
parent 72bf3c6d4f
commit ec17f3df4f
No known key found for this signature in database
GPG key ID: 3B22282472C8AE48
5 changed files with 56 additions and 29 deletions

View file

@ -55,7 +55,8 @@ export async function activate(context: vscode.ExtensionContext) {
context.subscriptions.push(vscode.commands.registerCommand("mcshader.graphDot", async () => {
await langServer.sendRequest(vscodeLang.ExecuteCommandRequest.type.method, {
command: 'graphDot'
command: 'graphDot',
arguments: [vscode.workspace.workspaceFolders[0].uri.path],
})
}))
}