1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-16 03:06:27 +00:00

Fix Cmd+Left to go to end of line on Mac

This commit is contained in:
Ryan Scott
2018-10-03 21:18:25 -05:00
committed by Junyoung Choi
parent 64ca875cfd
commit 64abd564b4

View File

@@ -177,6 +177,9 @@ export default class CodeEditor extends React.Component {
} }
} }
}, },
'Cmd-Left': function (cm) {
cm.execCommand('goLineLeft')
},
'Cmd-T': function (cm) { 'Cmd-T': function (cm) {
// Do nothing // Do nothing
}, },