From c23665cf6395ac783227ec0b328aa33f7eb60447 Mon Sep 17 00:00:00 2001 From: Henrik Giesel Date: Fri, 18 Jun 2021 01:32:46 +0200 Subject: [PATCH] Allow Tab and Shift+Tab on Codable --- ts/editor/codable.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ts/editor/codable.ts b/ts/editor/codable.ts index af9916555..f243085be 100644 --- a/ts/editor/codable.ts +++ b/ts/editor/codable.ts @@ -20,6 +20,7 @@ const codeMirrorOptions = { gutters: ["CodeMirror-linenumbers", "CodeMirror-foldgutter"], matchTags: { bothTags: true }, autoCloseTags: true, + extraKeys: { Tab: false, "Shift-Tab": false }, viewportMargin: Infinity, };