From 80cceab24e126f044dc45c3ab824cf3dde9f003d Mon Sep 17 00:00:00 2001 From: Jinbo Wang Date: Mon, 18 Dec 2017 11:37:54 +0800 Subject: [PATCH] Adpot new vscode debug activation event (#196) Signed-off-by: Jinbo Wang --- README.md | 2 +- package.json | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2c8dd53..085ed80 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ A lightweight Java Debugger based on [Java Debug Server](https://github.com/Micr ## Requirements - JDK (version 1.8.0 or later) -- VS Code (version 1.17.0 or later) +- VS Code (version 1.19.0 or later) - [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) (version 0.14.0 or later) ## Install diff --git a/package.json b/package.json index 48fb4ca..04ec183 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "debugger" ], "engines": { - "vscode": "^1.17.0" + "vscode": "^1.19.0" }, "license": "SEE LICENSE IN LICENSE.txt", "repository": { @@ -30,7 +30,8 @@ ], "activationEvents": [ "onLanguage:java", - "onDebug" + "onDebugInitialConfigurations", + "onDebugResolve:java" ], "main": "./out/src/extension", "contributes": {