Skip to content

Commit

Permalink
ran prettier -c --write
Browse files Browse the repository at this point in the history
  • Loading branch information
tmhglnd committed Jan 9, 2025
1 parent 67f72b9 commit 395e099
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/web/src/components/editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ const panicKeymap = (
const extraKeymap = () => {
return keymap.of([
// fixes the Cmd/Alt-/ issue for Spanish keyboards
{ key: 'Shift-Cmd-7', run: toggleLineComment },
{ key: 'Shift-Alt-7', run: toggleLineComment },
{ key: 'Alt-/', run: toggleLineComment },
{ key: 'Ctrl-/', run: toggleLineComment },
])
{ key: "Shift-Cmd-7", run: toggleLineComment },
{ key: "Shift-Alt-7", run: toggleLineComment },
{ key: "Alt-/", run: toggleLineComment },
{ key: "Ctrl-/", run: toggleLineComment },
]);
};

interface FlokSetupOptions {
Expand Down

0 comments on commit 395e099

Please sign in to comment.