Skip to content

Commit 6b86865

Browse files
dtom90Rokt33r
authored andcommitted
Changed "insert date & time" hotkey on mac from Shift-Cmd-/ to Alt-Cmd-/
1 parent 9fe9e1a commit 6b86865

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

browser/components/CodeEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export default class CodeEditor extends React.Component {
220220
const dateNow = new Date()
221221
cm.replaceSelection(dateNow.toLocaleString())
222222
},
223-
'Shift-Cmd-/': function (cm) {
223+
'Alt-Cmd-/': function (cm) {
224224
if (global.process.platform !== 'darwin') { return }
225225
const dateNow = new Date()
226226
cm.replaceSelection(dateNow.toLocaleString())

0 commit comments

Comments
 (0)