diff options
author | Wu Cheng-Han | 2017-09-27 21:27:33 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2017-09-27 21:27:33 +0800 |
commit | 2bdccd39964c8f6f643fd72ed7bdb648378068f8 (patch) | |
tree | 63586132dfd7c8659aacb69bfbcbdeea82cfffe6 | |
parent | fe384d80bf03a4d33fd38500cbaaf2ec3abb8bdb (diff) |
Fix home and end keys behavior for windows
-rw-r--r-- | public/js/lib/editor/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/public/js/lib/editor/index.js b/public/js/lib/editor/index.js index 2991998b..33c1e0d4 100644 --- a/public/js/lib/editor/index.js +++ b/public/js/lib/editor/index.js @@ -74,6 +74,8 @@ export default class Editor { }, 'Cmd-Left': 'goLineLeftSmart', 'Cmd-Right': 'goLineRight', + 'Home': 'goLineLeftSmart', + 'End': 'goLineRight', 'Ctrl-C': function (cm) { if (!isMac && cm.getOption('keyMap').substr(0, 3) === 'vim') { document.execCommand('copy') |