1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +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) {
// Do nothing
},