We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 657c184 commit 88f6f91Copy full SHA for 88f6f91
src/utils/shell.ts
@@ -49,9 +49,6 @@ function getWindowsTerminalConfig() {
49
const config = vscode.workspace.getConfiguration("terminal.integrated")
50
const defaultProfileName = config.get<string>("defaultProfile.windows")
51
const profiles = config.get<WindowsTerminalProfiles>("profiles.windows") || {}
52
- console.log(`getWindowsTerminalConfig.defaultProfileName = ${defaultProfileName}`)
53
- console.log(profiles["Git Bash"])
54
- console.log(process.env)
55
return { defaultProfileName, profiles }
56
} catch {
57
return { defaultProfileName: null, profiles: {} as WindowsTerminalProfiles }
0 commit comments