-
-
Save melborne/ac7a3613ad5c77387b8c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: UTF-8 | |
# emoji plugin(Emot gem version) | |
# ==== | |
# | |
# You can post Emoji easily! | |
# | |
# Usage | |
# ---- | |
# | |
# heading to Shibuya :train: | |
# :zzz: | |
# | |
# See also: | |
# ---- | |
# | |
# * https://github.com/jugyo/named_emoji | |
# * http://www.emoji-cheat-sheet.com/ | |
# * https://github.com/melborne/emot | |
require 'emot' | |
Earthquake.init do | |
input_filter do |text| | |
next text unless text =~ %r|^(:\w+)| | |
text.gsub(/:([^\s:]+):/) do |emoji_name| | |
Emot.icon($1.to_sym) || emoji_name | |
end | |
end | |
completion do |text| | |
next [] if Readline.line_buffer.strip == text | |
regexp = /^#{Regexp.quote(text)}/ | |
Emot::MAP.keys.map {|i| ":#{i}:"}.grep(regexp) | |
end | |
command :emojis do | |
puts Emot.list.map {|k, (v,_)| "#{v} #{k}"}.join(" ") | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment