@@ -9,7 +9,7 @@ import { javaRuntimeCmdHandler } from "../java-runtime";
99import { javaGettingStartedCmdHandler } from "../getting-started" ;
1010import { javaExtGuideCmdHandler } from "../ext-guide" ;
1111import { instrumentOperationAsVsCodeCommand } from "vscode-extension-telemetry-wrapper" ;
12- import { showWelcomeWebview } from "../welcome" ;
12+ import { showWelcomeWebview , showWelcomeWebviewBeside } from "../welcome" ;
1313import { showClasspathConfigurationPage } from "../classpath/classpathConfigurationView" ;
1414import { javaFormatterSettingsEditorProvider } from "../formatter-settings" ;
1515
@@ -27,7 +27,8 @@ export function initialize(context: vscode.ExtensionContext) {
2727 context . subscriptions . push ( vscode . commands . registerCommand ( "java.gettingStarted" , instrumentCommand ( context , "java.gettingStarted" , javaGettingStartedCmdHandler ) ) ) ;
2828 context . subscriptions . push ( vscode . commands . registerCommand ( "java.extGuide" , instrumentCommand ( context , "java.extGuide" , javaExtGuideCmdHandler ) ) ) ;
2929 context . subscriptions . push ( instrumentOperationAsVsCodeCommand ( "java.webview.runCommand" , webviewCmdLinkHandler ) ) ;
30- context . subscriptions . push ( vscode . commands . registerCommand ( "java.welcome" , instrumentCommand ( context , "java.welcome" , showWelcomeWebview ) ) ) ;
30+ context . subscriptions . push ( vscode . commands . registerCommand ( "java.welcome" , instrumentCommand ( context , "java.welcome" , showWelcomeWebviewBeside ) ) ) ;
31+ context . subscriptions . push ( vscode . commands . registerCommand ( "java.welcome.fromWalkthrough" , instrumentCommand ( context , "java.welcome.fromWalkthrough" , showWelcomeWebview ) ) ) ;
3132 context . subscriptions . push ( vscode . commands . registerCommand ( "java.formatterSettings" , instrumentCommand ( context , "java.formatterSettings" , ( ) => javaFormatterSettingsEditorProvider . showFormatterSettingsEditor ( ) ) ) ) ;
3233 context . subscriptions . push ( vscode . commands . registerCommand ( "java.formatterSettings.showTextEditor" , instrumentCommand ( context , "java.formatterSettings.showTextEditor" , javaFormatterSettingsEditorProvider . reopenWithTextEditor ) ) ) ;
3334 context . subscriptions . push ( vscode . commands . registerCommand ( "java.classpathConfiguration" , instrumentCommand ( context , "java.classpathConfiguration" , showClasspathConfigurationPage ) ) ) ;
0 commit comments