From f252e310f286d5071757310326d061896961ffe9 Mon Sep 17 00:00:00 2001 From: Volodymyr Shatskyi Date: Fri, 25 Aug 2017 16:39:22 +0300 Subject: [PATCH] Make command name bold. --- src/monaco/PromptTheme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/monaco/PromptTheme.ts b/src/monaco/PromptTheme.ts index 179b4d90a..0d6aeeaae 100644 --- a/src/monaco/PromptTheme.ts +++ b/src/monaco/PromptTheme.ts @@ -6,7 +6,7 @@ monaco.editor.defineTheme("upterm-prompt-theme", { rules: [ {token: "string", foreground: colors.green.slice(1)}, {token: "string.invalid", foreground: colors.red.slice(1)}, - {token: "command-name", foreground: colors.green.slice(1)}, + {token: "command-name", foreground: colors.green.slice(1), fontStyle: "bold"}, {token: "word", foreground: textColor.slice(1)}, {token: "pipe", foreground: colors.yellow.slice(1)}, {token: "semicolon", foreground: colors.yellow.slice(1)},