Skip to content

Instantly share code, notes, and snippets.

@DokterW
Last active December 28, 2015 13:29
Show Gist options
  • Save DokterW/7508469 to your computer and use it in GitHub Desktop.
Save DokterW/7508469 to your computer and use it in GitHub Desktop.
A few of my own Tweetbot RegEx filters, plus links to others.

###Hashtags

  • (?i)#.*gate — Too many, even journalists, append the suffix -gate willy-nilly. Overlooked it catches all words that ends with -gate.
  • (?i)#?SEO — Not interested!
  • (?i)#.*followback — I will follow you back if I find you interesting.
  • promote your business — Hate PR shit like this! [not a regex, but worth adding to your filter]

###Templates

  • (?i)#?.*TERM.* — This is great to mute specific words and hashtags that contain a specific word or part of a word. Just swap with TERM and you will be good to go. Just be careful so you don't end up blocking more than you want, as it has wildcards at the beginning and the end.
  • (?i)#?TERM.* — This is similar to the one above. The only difference is that it only focuses on the end of the TERM, making it less aggressive when it mutes.

###Other Filters

Mute-filters-for-Tweetbot.md

tweetbot-mute-regex.md

more-mute-regex.md

RegEx-Filters.md

Tweetbot Mute Filters

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment