Skip to content

Commit c6c95eb

Browse files
author
Ives van Hoorne
committed
Change emmet autocomplete key to CTRL/CMD+E
Helps with codesandbox#194
1 parent eaeb17e commit c6c95eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app/src/app/components/CodeEditor/Monaco/enable-emmet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const enableEmmet = (editor, monaco) => {
2525
label: 'Emmet: Expand abbreviation',
2626

2727
// An optional array of keybindings for the action.
28-
keybindings: [monaco.KeyMod.CtrlCmd | monaco.KeyCode.F10], // eslint-disable-line no-bitwise
28+
keybindings: [monaco.KeyMod.CtrlCmd | monaco.KeyCode.KEY_E], // eslint-disable-line no-bitwise
2929

3030
// A precondition for this action.
3131
precondition: null,

0 commit comments

Comments
 (0)