added powershell core as a separate shell (#123)

This commit is contained in:
Eugene Pankov
2018-03-11 19:53:13 +01:00
parent e9f22dd8b5
commit 3b43b3914b

View File

@@ -36,12 +36,20 @@ export class WindowsStockShellsProvider extends ShellProvider {
{ id: 'cmd', name: 'CMD (stock)', command: 'cmd.exe' },
{
id: 'powershell',
name: 'PowerShell',
name: 'Windows PowerShell',
command: 'powershell.exe',
env: {
TERM: 'cygwin',
}
},
{
id: 'powershell-core',
name: 'PowerShell Core',
command: 'pwsh.exe',
env: {
TERM: 'cygwin',
}
},
]
}
}