Skip to content

Instantly share code, notes, and snippets.

@jaydorsey
Last active August 24, 2021 07:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaydorsey/d1c54ef5fa48668833851423341fbf6f to your computer and use it in GitHub Desktop.
Save jaydorsey/d1c54ef5fa48668833851423341fbf6f to your computer and use it in GitHub Desktop.
Tampermonkey script to sisable the Github automatic list completion behavior
// ==UserScript==
// @name Disable Github List Completion
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Disables the behavior described in https://github.blog/changelog/2020-12-15-markdown-list-syntax-now-autocompleted/
// @author Jay Dorsey
// @match https://*.github.com/*
// @grant window.focus
// ==/UserScript==
(function() {
'use strict';
document.querySelectorAll('.js-task-list-field').forEach(el => { el.classList.remove('js-task-list-field') });
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment