We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 626312c commit 3d8468bCopy full SHA for 3d8468b
src/components/atoms/CodeEditor.tsx
@@ -57,7 +57,10 @@ class CodeEditor extends React.Component<CodeEditorProps> {
57
keyMap,
58
mode: this.props.mode || 'gfm',
59
readOnly: this.props.readonly === true,
60
- extraKeys: { Enter: 'newlineAndIndentContinueMarkdownList' },
+ extraKeys: {
61
+ Enter: 'newlineAndIndentContinueMarkdownList',
62
+ Tab: 'indentMore',
63
+ },
64
})
65
this.codeMirror.on('change', this.handleCodeMirrorChange)
66
window.addEventListener('codemirror-mode-load', this.reloadMode)
0 commit comments