From 6050442bc8e0064c31b4eeae7e51464f865d56eb Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Wed, 3 Jan 2024 16:18:16 +0100 Subject: [PATCH] fix: lowercase shortcuts in help --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 31c313a..8e2dba8 100644 --- a/main.js +++ b/main.js @@ -2202,7 +2202,7 @@ function showhelp() commands .filter(command => Boolean(command.shortcut)) - .forEach(command => help.push(command.hint + ": " + command.shortcut)); + .forEach(command => help.push(command.hint + ": " + command.shortcut.toLowerCase())); help.push("## Snippets"); snippets.forEach(snippet =>