From 4bc4f1adaf04dfeb757d3c897e2a14e4f1874b0b Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Thu, 8 Feb 2024 10:48:55 -0800 Subject: [PATCH] Add zsh and fish as valid shell code block languages This will make the run in terminal button move out of the overflow menu --- .../contrib/chat/browser/actions/chatCodeblockActions.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.ts b/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.ts index 2d616c7be68..0076b4eb1f8 100644 --- a/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.ts +++ b/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.ts @@ -382,8 +382,10 @@ export function registerChatCodeBlockActions() { }); const shellLangIds = [ + 'fish', 'powershell', - 'shellscript' + 'shellscript', + 'zsh' ]; registerAction2(class RunInTerminalAction extends ChatCodeBlockAction { constructor() {