From be60f884fee676e810e05cfbc4a80b539503d8d2 Mon Sep 17 00:00:00 2001 From: tel0065 <77864718+tel0065@users.noreply.github.com> Date: Thu, 5 May 2022 12:15:39 -0500 Subject: [PATCH] naming scheme changed mindReader to mind-reader to be consistent with other parts of the extension --- src/commands/nav.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/nav.ts b/src/commands/nav.ts index a33775b..57f8ef7 100755 --- a/src/commands/nav.ts +++ b/src/commands/nav.ts @@ -78,7 +78,7 @@ export const navCommands: CommandEntry[] = [ // COMMAND CALLBACK IMPLEMENTATIONS function openWebview(): void { const panel = vscode.window.createWebviewPanel( - "mindReader", // Identifies the type of the webview. Used internally + "mind-reader", // Identifies the type of the webview. Used internally "Mind Reader", // Title of the panel displayed to the user vscode.ViewColumn.One, // Editor column to show the new webview panel in. {}