Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripts/dev-safari.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ async function serverCheck(url) {
/** run development server */
const server = await createServer({
...sharedConfig,
publicDir: "public/ext/vendor/",
plugins: [svelte()],
server: {
host: true,
Expand Down
5 changes: 0 additions & 5 deletions src/ext/extension-page/Components/Editor/CodeMirror.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,6 @@
"Cmd-S": () => saveHandler(),
"Cmd-F": () => activateSearch(),
Esc: () => (searchActive = false),
Tab: (cm) => {
// convert tabs to spaces and add invisible elements
const s = Array(cm.getOption("indentUnit") + 1).join(" ");
cm.replaceSelection(s);
},
},
});

Expand Down