Skip to content

Instantly share code, notes, and snippets.

@CaledoniaProject
Created January 21, 2022 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CaledoniaProject/f1c19ca4dece8bb2cd571a4d7766af1a to your computer and use it in GitHub Desktop.
Save CaledoniaProject/f1c19ca4dece8bb2cd571a4d7766af1a to your computer and use it in GitHub Desktop.
Disable CTRL+E/K shortcut key combination on github.com
setTimeout(() => {
document.querySelectorAll("textarea").forEach(e => {
e.addEventListener("keydown", ev => {
if (ev.ctrlKey) {
ev.stopPropagation();
}
})
})
}, 2000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment