From 4b7e4508d20f7b4d768a53b488375724ca5aff6e Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Sun, 10 Dec 2023 09:57:44 +0000 Subject: [PATCH] External terminal for vscode catalog launch --- .vscode/launch.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 0b929684..f1b575df 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -101,6 +101,14 @@ "request": "launch", "mainClass": "org.springframework.shell.samples.catalog.SpringShellApplication", "projectName": "spring-shell-sample-catalog" + }, + { + "type": "java", + "name": "catalog ext", + "request": "launch", + "console": "externalTerminal", + "mainClass": "org.springframework.shell.samples.catalog.SpringShellApplication", + "projectName": "spring-shell-sample-catalog" } ] }