From 98347f9773393bfee962c74a392da7cdbc872cc9 Mon Sep 17 00:00:00 2001 From: Kareem Osama <69414864+Kareem-dev@users.noreply.github.com> Date: Sat, 12 Jun 2021 03:13:03 +0200 Subject: [PATCH] Removed workspace name I personally didn't like having the workspace name in the snap, you don't have to accept the changes, but I would be prefer if you add this as an option in the next update. --- src/extension.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension.js b/src/extension.js index d31306a..c0cd030 100644 --- a/src/extension.js +++ b/src/extension.js @@ -31,7 +31,7 @@ const getConfig = () => { let windowTitle = ''; if (editor && extensionSettings.showWindowTitle) { const activeFileName = editor.document.uri.path.split('/').pop(); - windowTitle = `${vscode.workspace.name} - ${activeFileName}`; + windowTitle = `${activeFileName}`; } return {