From 56e6df5dba351ac1c38a87118adcbc96a904960b Mon Sep 17 00:00:00 2001 From: Tobias Fenster Date: Sun, 25 Jun 2017 21:30:09 +0200 Subject: [PATCH] 1.0.2 --- package.json | 44 +++++++++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 19 deletions(-) diff --git a/package.json b/package.json index 380e967..0e2e366 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "alrunner", "displayName": "ALRunner", "description": "Can run AL objects", - "version": "1.0.1", + "version": "1.0.2", "publisher": "tfenster", "repository": "https://github.com/tfenster/ALRunner", "engines": { @@ -16,24 +16,30 @@ ], "main": "./out/src/extension", "contributes": { - "commands": [{ - "command": "extension.runSelection", - "title": "ALRunner: Run Selection" - },{ - "command": "extension.runFirstObject", - "title": "ALRunner: Run object on first line" - }], - "keybindings": [{ - "command": "extension.runSelection", - "key": "alt+r", - "mac": "cmd+r", - "when": "editorTextFocus" - },{ - "command": "extension.runFirstObject", - "key": "shift+alt+r", - "mac": "shift+cmd+r", - "when": "editorTextFocus" - }] + "commands": [ + { + "command": "extension.runSelection", + "title": "ALRunner: Run Selection" + }, + { + "command": "extension.runFirstObject", + "title": "ALRunner: Run object on first line" + } + ], + "keybindings": [ + { + "command": "extension.runSelection", + "key": "alt+r", + "mac": "cmd+r", + "when": "editorTextFocus" + }, + { + "command": "extension.runFirstObject", + "key": "shift+alt+r", + "mac": "shift+cmd+r", + "when": "editorTextFocus" + } + ] }, "scripts": { "vscode:prepublish": "tsc -p ./",