Skip to content

Instantly share code, notes, and snippets.

View Vizaxo's full-sized avatar

Mitch Vizaxo

View GitHub Profile
@Vizaxo
Vizaxo / shadertoy-vim-bookmarklet
Created August 4, 2023 21:21
Bookmarklet to enable Vim keybindings in ShaderToy
javascript:script = document.createElement('script'); script.type = 'text/javascript'; script.src = 'https://codemirror.net/5/keymap/vim.js'; document.head.appendChild(script); function callbackf() {gShaderToy.mCodeEditor.setOption("keyMap", "vim"); }; setTimeout(callbackf, 1000); void(0);