Skip to content

Instantly share code, notes, and snippets.

@primenumber
Created July 2, 2015 08:07
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 primenumber/0936dc9e8746d5756c7f to your computer and use it in GitHub Desktop.
Save primenumber/0936dc9e8746d5756c7f to your computer and use it in GitHub Desktop.
鬱陶しい短冊ツイートを非表示にするmikutterプラグイン
# -*- coding: utf-8 -*-
Plugin.create(:tanzaku_filter) do
filter_show_filter do |msgs|
msgs = msgs.select {|m|
/(┏|★)(┷|┻)┓\n(┃[[:print:]]?┃\n)+┗━(┛|★)/.match(m.to_s) == nil
}
[msgs]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment