naming scheme

changed mindReader to mind-reader to be consistent with other parts of the extension
This commit is contained in:
tel0065 2022-05-05 12:15:39 -05:00 committed by GitHub
parent b51507b76f
commit be60f884fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.
{}