You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/externalTerminal/electron-sandbox/externalTerminal.contribution.ts
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,21 @@ export class ExternalTerminalContribution implements IWorkbenchContribution {
112
112
description: nls.localize('explorer.openInTerminalKind',"When opening a file from the Explorer in a terminal, determines what kind of terminal will be launched"),
113
113
default: 'integrated'
114
114
},
115
+
'terminal.sourceControlRepositoriesKind': {
116
+
type: 'string',
117
+
enum: [
118
+
'integrated',
119
+
'external',
120
+
'both'
121
+
],
122
+
enumDescriptions: [
123
+
nls.localize('terminal.sourceControlRepositoriesKind.integrated',"Use VS Code's integrated terminal."),
124
+
nls.localize('terminal.sourceControlRepositoriesKind.external',"Use the configured external terminal."),
125
+
nls.localize('terminal.sourceControlRepositoriesKind.both',"Use the other two together.")
126
+
],
127
+
description: nls.localize('sourceControlRepositories.openInTerminalKind',"When opening a repository from the Source Control Repositories view in a terminal, determines what kind of terminal will be launched"),
128
+
default: 'integrated'
129
+
},
115
130
'terminal.external.windowsExec': {
116
131
type: 'string',
117
132
description: nls.localize('terminal.external.windowsExec',"Customizes which terminal to run on Windows."),
0 commit comments