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
constshellDeprecationMessageLinux=localize('terminal.integrated.shell.linux.deprecation',"This is deprecated, the new recommended way to configure your default shell is by creating a terminal profile in {0} and setting its profile name as the default in {1}. This will currently take priority over the new profiles settings but that will change in the future.",'`#terminal.integrated.profiles.linux#`','`#terminal.integrated.defaultProfile.linux#`');
51
+
constshellDeprecationMessageOsx=localize('terminal.integrated.shell.osx.deprecation',"This is deprecated, the new recommended way to configure your default shell is by creating a terminal profile in {0} and setting its profile name as the default in {1}. This will currently take priority over the new profiles settings but that will change in the future.",'`#terminal.integrated.profiles.osx#`','`#terminal.integrated.defaultProfile.osx#`');
52
+
constshellDeprecationMessageWindows=localize('terminal.integrated.shell.windows.deprecation',"This is deprecated, the new recommended way to configure your default shell is by creating a terminal profile in {0} and setting its profile name as the default in {1}. This will currently take priority over the new profiles settings but that will change in the future.",'`#terminal.integrated.profiles.windows#`','`#terminal.integrated.defaultProfile.windows#`');
description: localize('terminal.integrated.defaultProfile.linux','The default profile used on Linux. When set to a valid profile name, this will override the values of `terminal.integrated.shell.osx` and `terminal.integrated.shellArgs.osx`.'),
268
+
markdownDescription: localize('terminal.integrated.defaultProfile.linux',"The default profile used on Linux. This setting will currently be ignored if either {0} or {1} are set.",'`#terminal.integrated.shell.linux#`','`#terminal.integrated.shellArgs.linux#`'),
265
269
type: ['string','null'],
266
270
default: null,
267
271
scope: ConfigurationScope.APPLICATION// Disallow setting the default in workspace settings
268
272
},
269
273
'terminal.integrated.defaultProfile.osx': {
270
-
description: localize('terminal.integrated.defaultProfile.osx','The default profile used on macOS. When set to a valid profile name, this will override the values of `terminal.integrated.shell.osx` and `terminal.integrated.shellArgs.osx`.'),
274
+
description: localize('terminal.integrated.defaultProfile.osx',"The default profile used on macOS. This setting will currently be ignored if either {0} or {1} are set.",'`#terminal.integrated.shell.osx#`','`#terminal.integrated.shellArgs.osx#`'),
271
275
type: ['string','null'],
272
276
default: null,
273
277
scope: ConfigurationScope.APPLICATION// Disallow setting the default in workspace settings
274
278
},
275
279
'terminal.integrated.defaultProfile.windows': {
276
-
description: localize('terminal.integrated.defaultProfile.windows','The default profile used on Windows. When set to a valid profile name, this will override the values of `terminal.integrated.shell.windows` and `terminal.integrated.shellArgs.windows`.'),
280
+
description: localize('terminal.integrated.defaultProfile.windows',"The default profile used on Windows. This setting will currently be ignored if either {0} or {1} are set.",'`#terminal.integrated.shell.windows#`','`#terminal.integrated.shellArgs.windows#`'),
277
281
type: ['string','null'],
278
282
default: null,
279
283
scope: ConfigurationScope.APPLICATION// Disallow setting the default in workspace settings
@@ -682,21 +686,21 @@ function getTerminalShellConfigurationStub(linux: string, osx: string, windows:
682
686
markdownDescription: linux,
683
687
type: ['string','null'],
684
688
default: null,
685
-
markdownDeprecationMessage: 'This is deprecated, use `#terminal.integrated.defaultProfile.linux#` instead'
0 commit comments