Skip to content

Commit 64abd56

Browse files
rscottRokt33r
authored andcommitted
Fix Cmd+Left to go to end of line on Mac
1 parent 64ca875 commit 64abd56

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

browser/components/CodeEditor.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,9 @@ export default class CodeEditor extends React.Component {
177177
}
178178
}
179179
},
180+
'Cmd-Left': function (cm) {
181+
cm.execCommand('goLineLeft')
182+
},
180183
'Cmd-T': function (cm) {
181184
// Do nothing
182185
},

0 commit comments

Comments
 (0)