diff --git a/lib/client/key.js b/lib/client/key.js index 03a7f3b7..2ea34aae 100644 --- a/lib/client/key.js +++ b/lib/client/key.js @@ -49,6 +49,7 @@ var CloudCmd, Util, DOM; F9 : 120, F10 : 121, + SLASH : 191, TRA : 192 /* Typewritten Reverse Apostrophe (`) */ }; @@ -221,6 +222,13 @@ var CloudCmd, Util, DOM; DOM.shrinkSelection(); break; + case Key.SLASH: + if (lShift) { + Util.exec(CloudCmd.Help.show); + DOM.preventDefault(pEvent); + } + break; + case Key.F1: Util.exec(CloudCmd.Help.show); DOM.preventDefault(pEvent);