summaryrefslogtreecommitdiff
path: root/plugins/emoji
AgeCommit message (Collapse)Author
2021-12-28chore: fix comment bulk replaceMarc Cornellà
2021-12-28refactor: handle `$0` according to the Zsh plugin standard (#10518)Curtis Rueden
For details and rationale, see: https://zdharma-continuum.github.io/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html Closes #10518
2021-12-01chore: fix spelling errors across the project (#10459)Josh Soref
Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
2018-08-07use https everywhere (#6574)Janosch Schwalm
* use https everywhere * use https links on the files that are left Also, removed some broken links and updated redirections.
2015-08-30Merge pull request #4244 from Gnouc/masterRobby Russell
Emoji plugin - Fix wrong string comparison
2015-08-17Remove obsolete commentMarc Cornellà
2015-08-16Check that list_size value is not zero before divisionMarc Cornellà
2015-08-16Use right variable name to avoid zero-length arrayMarc Cornellà
This fixes the typographic error that always assigned an undefined array to `$names`, which made `$list_size` = 0 and triggered a divide by zero error on the next line.
2015-08-14Emoji plugin - Fix wrong string comparisonLE Manh Cuong
2015-07-15Remove redundant comments from the .zsh file (since they're in README now).Andrew Janke
2015-07-15emoji plugin: generate char map from Unicode UTR51 data filesAndrew Janke
Refactor the functions and group listings to have fewer functions, but have them take group names as parameters. Pull group definitions in to a single associative array.
2014-06-09added emoji plugin to make it easy to display emoji characters in the terminalfallwith