fix: lowercase shortcuts in help
This commit is contained in:
parent
93153ad7c1
commit
6050442bc8
2
main.js
2
main.js
|
@ -2202,7 +2202,7 @@ function showhelp()
|
||||||
|
|
||||||
commands
|
commands
|
||||||
.filter(command => Boolean(command.shortcut))
|
.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");
|
help.push("## Snippets");
|
||||||
snippets.forEach(snippet =>
|
snippets.forEach(snippet =>
|
||||||
|
|
Loading…
Reference in New Issue