@@ -209,17 +209,17 @@ export abstract class BaseTerminalProfileResolverService implements ITerminalPro
209209 }
210210
211211 private _getUnresolvedRealDefaultProfile ( os : OperatingSystem ) : ITerminalProfile | undefined {
212- const defaultProfileName = this . _configurationService . getValue ( `${ TerminalSettingPrefix . DefaultProfile } . ${ this . _getOsKey ( os ) } ` ) ;
212+ const defaultProfileName = this . _configurationService . getValue ( `${ TerminalSettingPrefix . DefaultProfile } ${ this . _getOsKey ( os ) } ` ) ;
213213 if ( defaultProfileName && typeof defaultProfileName === 'string' ) {
214214 return this . _terminalService . availableProfiles . find ( e => e . profileName === defaultProfileName ) ;
215215 }
216216 return undefined ;
217217 }
218218
219219 private async _getUnresolvedShellSettingDefaultProfile ( options : IShellLaunchConfigResolveOptions ) : Promise < ITerminalProfile | undefined > {
220- let executable = this . _configurationService . getValue < string > ( `${ TerminalSettingPrefix . Shell } . ${ this . _getOsKey ( options . os ) } ` ) ;
220+ let executable = this . _configurationService . getValue < string > ( `${ TerminalSettingPrefix . Shell } ${ this . _getOsKey ( options . os ) } ` ) ;
221221 if ( ! this . _isValidShell ( executable ) ) {
222- const shellArgs = this . _configurationService . inspect ( `${ TerminalSettingPrefix . ShellArgs } . ${ this . _getOsKey ( options . os ) } ` ) ;
222+ const shellArgs = this . _configurationService . inspect ( `${ TerminalSettingPrefix . ShellArgs } ${ this . _getOsKey ( options . os ) } ` ) ;
223223 // && !this.getSafeConfigValue('shellArgs', options.os, false)) {
224224 if ( ! shellArgs . userValue && ! shellArgs . workspaceValue ) {
225225 return undefined ;
@@ -231,7 +231,7 @@ export abstract class BaseTerminalProfileResolverService implements ITerminalPro
231231 }
232232
233233 let args : string | string [ ] | undefined ;
234- const shellArgsSetting = this . _configurationService . getValue ( `${ TerminalSettingPrefix . ShellArgs } . ${ this . _getOsKey ( options . os ) } ` ) ;
234+ const shellArgsSetting = this . _configurationService . getValue ( `${ TerminalSettingPrefix . ShellArgs } ${ this . _getOsKey ( options . os ) } ` ) ;
235235 if ( this . _isValidShellArgs ( shellArgsSetting , options . os ) ) {
236236 args = shellArgsSetting ;
237237 }
0 commit comments