fix: lowercase shortcuts in help

This commit is contained in:
quenousimporte 2024-01-03 16:18:16 +01:00
parent 93153ad7c1
commit 6050442bc8
1 changed files with 1 additions and 1 deletions

View File

@ -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 =>