From c6a3c1309bfa03afa2d3bce6c70adcb06a54de06 Mon Sep 17 00:00:00 2001 From: Allen Date: Sun, 5 Jul 2026 15:10:40 -0400 Subject: [PATCH] Add language icons for bash and zsh LANGUAGE_NAMES maps the fence languages bash -> "Bash" and zsh -> "Zsh", but the LANGUAGES map only defines an icon for "Shell", so bash and zsh codeblocks render no header icon. Add "Bash" and "Zsh" entries reusing the existing Shell terminal icon and colour. Co-Authored-By: Claude Fable 5 --- src/Settings.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Settings.ts b/src/Settings.ts index ca7b442..2deb871 100644 --- a/src/Settings.ts +++ b/src/Settings.ts @@ -1504,6 +1504,10 @@ export const LANGUAGES: {[key: string]: Language} = { colour: "#d2d2d2", icon: "", }, + "Bash": { + colour: "#d9b400", + icon: "", + }, "Batch": { colour: "#d9b400", icon: "", @@ -2187,6 +2191,10 @@ export const LANGUAGES: {[key: string]: Language} = { "Zig": { colour: "#f7a41d", icon: "", + }, + "Zsh": { + colour: "#d9b400", + icon: "", } };