Update shell-integration.md

This commit is contained in:
Andrei Maga 2020-03-09 17:00:23 +02:00
parent 9d2b699a00
commit 78010094b3

View file

@ -28,6 +28,9 @@ These shells are currently supported:
- [PowerShell Core](https://github.com/powershell/powershell/)
- [Hyper](https://hyper.sh/)
- Git Bash (from [Git for Windows](https://git-for-windows.github.io/))
- [Cygwin](https://www.cygwin.com/)
- WSL
- [Windows Terminal](https://github.com/microsoft/terminal)
These are defined in an enum at the top of the file:
@ -38,6 +41,9 @@ export enum Shell {
PowerShellCore = 'PowerShell Core',
Hyper = 'Hyper',
GitBash = 'Git Bash',
Cygwin = 'Cygwin',
WSL = 'WSL',
WindowTerminal = 'Windows Terminal',
}
```