We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f618f01 + c4aee64 commit c729099Copy full SHA for c729099
1 file changed
src/ext/extension-page/Components/Editor/CodeMirror.svelte
@@ -150,11 +150,6 @@
150
"Cmd-S": () => saveHandler(),
151
"Cmd-F": () => activateSearch(),
152
Esc: () => (searchActive = false),
153
- Tab: (cm) => {
154
- // convert tabs to spaces and add invisible elements
155
- const s = Array(cm.getOption("indentUnit") + 1).join(" ");
156
- cm.replaceSelection(s);
157
- },
158
},
159
});
160
0 commit comments