NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Prevent the Enter key from submitting edits on Wikimedia sites // @namespace https://openuserjs.org/users/mrj // @version 1 // @description No longer accidentally submit wiki edits by hitting Enter in the Edit Summary box // @include /^https://\w+\.(wiki(pedia|quote|source|news|books|versity|data|voyage)|wiktionary|mediawiki)\.org/.*(\?|&)action=edit(&|$)/ // @grant none // @license MIT // ==/UserScript== // Adapted from https://stackoverflow.com/a/37241980/7478194 // window.addEventListener('keydown', function(e) { if (e.target.nodeName === 'INPUT' && e.target.type !== 'textarea' && (e.keyIdentifier == 'U+000A' || e.keyIdentifier == 'Enter' || e.keyCode == 13)) { e.preventDefault(); return false; } }, true);