You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Esse é um cheat sheet com alguns emojis da Finbits para utilizar em PRs, issues e comentários: use com moderação
Bash
Alternativamente, você pode colocar a função abaixo no seu .zshrc para facilitar a busca e/ou copiar o <img> direto:
functionemj() {
raw="${1//:/}"
companyid="T02BNKN7B1B"# substituir pelo id da empresa/grupo do slack
emoji="${raw:-rainbowdance}"# substituir rainbowdance por um emoji default
width="${2:-20}"
url="<img alt=\":$emoji:\" title=\":$emoji:\" src=\"https://emoji.slack-edge.com/$companyid/$emoji/724fa971d8bdf19d.png\" width=\"$width\"/>"echo$url# Ou use o echo abaixo para copiar p/ clipboard direto:# echo -n $url | xclip -selection clipboard
}