Allow Tab and Shift+Tab on Codable

This commit is contained in:
Henrik Giesel 2021-06-18 01:32:46 +02:00
parent 28679968f7
commit c23665cf63

View file

@ -20,6 +20,7 @@ const codeMirrorOptions = {
gutters: ["CodeMirror-linenumbers", "CodeMirror-foldgutter"],
matchTags: { bothTags: true },
autoCloseTags: true,
extraKeys: { Tab: false, "Shift-Tab": false },
viewportMargin: Infinity,
};