1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

Merge pull request #2746 from BoostIO/fix-go-to-eol-on-mac

Fix Cmd+Left to go to end of line on Mac
This commit is contained in:
Junyoung Choi
2018-12-24 17:02:51 +09:00
committed by GitHub

View File

@@ -178,6 +178,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
}, },