diff --git a/bundle.min.js b/bundle.min.js index 6381fda..4d9ff97 100644 --- a/bundle.min.js +++ b/bundle.min.js @@ -47505,6 +47505,14 @@ console.log(`Speed is ${window.speed}`); }); + emitter.on('fullscreen', () => { + if (!document.fullscreenElement) { + document.documentElement.requestFullscreen(); + } else if (document.exitFullscreen) { + document.exitFullscreen(); + } + }) + emitter.on('gallery:saveToURL', function () { let editor = state.editor.editor const editorText = editor.getValue() @@ -48204,15 +48212,18 @@ 'Ctrl-/': 'editor:toggleComment', 'Alt-Enter': 'editor:evalBlock', 'Shift-Ctrl-G': 'gallery:shareSketch', - 'Shift-Ctrl-F': 'editor:formatCode', + // 'Shift-Ctrl-F': 'editor:formatCode', 'Shift-Ctrl-L': 'gallery:saveToURL', 'Shift-Ctrl-H': 'hideAll', 'Cmd-H': 'hideAll', + 'Shift-Ctrl-F': 'fullscreen', 'Shift-Ctrl-S': 'screencap', 'Shift-Ctrl-C': 'gallery:search', + 'Cmd-]': 'gallery:nextSketch', + // Poop mode 'Shift-Ctrl-X': 'editor:toggleAutomutate', // poop toggle with prompt 'Shift-Ctrl-0': 'editor:toggleAutomutate', // poop off