From 3b43b3914be4fc7a1ab80c834244be4773c7a3ad Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sun, 11 Mar 2018 19:53:13 +0100 Subject: [PATCH] added powershell core as a separate shell (#123) --- terminus-terminal/src/shells/windowsStock.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/terminus-terminal/src/shells/windowsStock.ts b/terminus-terminal/src/shells/windowsStock.ts index cb81d60b..ad0d15b7 100644 --- a/terminus-terminal/src/shells/windowsStock.ts +++ b/terminus-terminal/src/shells/windowsStock.ts @@ -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', + } + }, ] } }