Skip to content

Instantly share code, notes, and snippets.

@jennschiffer
Last active October 2, 2015 16:16
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 jennschiffer/ba6db0cbc0fd10c897ae to your computer and use it in GitHub Desktop.
Save jennschiffer/ba6db0cbc0fd10c897ae to your computer and use it in GitHub Desktop.
put this in your damn console to hide annoying files in your github pr diff
// replace "wp-content/plugins" in the annoyance variable unless that is your annoyance like it is mine
$('.user-select-contain').each(function(){var annoyance="wp-content/plugins";var title=$(this).attr('title');if(title&&title.indexOf(annoyance)!=-1){$(this).closest('.file').hide();}});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment