added: alternative shortcuts for command palette
This commit is contained in:
parent
2136faf1ae
commit
175ea44ede
4
main.js
4
main.js
|
@ -2057,6 +2057,10 @@ function mainkeydownhandler()
|
||||||
fileindex = Math.max(fileindex, 0);
|
fileindex = Math.max(fileindex, 0);
|
||||||
applyfileindex();
|
applyfileindex();
|
||||||
}
|
}
|
||||||
|
else if (event.ctrlKey && event.key == " " || event.key == "F2")
|
||||||
|
{
|
||||||
|
commandpalette();
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
commands.filter(c => c.shortcut)
|
commands.filter(c => c.shortcut)
|
||||||
|
|
Loading…
Reference in New Issue