Merge pull request #204760 from microsoft/tyriar/codeblock_lang

Add zsh and fish as valid shell code block languages
This commit is contained in:
Daniel Imms 2024-02-08 11:04:39 -08:00 committed by GitHub
commit c1021c9573
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -382,8 +382,10 @@ export function registerChatCodeBlockActions() {
});
const shellLangIds = [
'fish',
'powershell',
'shellscript'
'shellscript',
'zsh'
];
registerAction2(class RunInTerminalAction extends ChatCodeBlockAction {
constructor() {