Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bcongdon/ep
⛏ A CLI Emoji Picker
https://github.com/bcongdon/ep
emoji emoji-keyboard emoji-picker
Last synced: 3 months ago
JSON representation
⛏ A CLI Emoji Picker
- Host: GitHub
- URL: https://github.com/bcongdon/ep
- Owner: bcongdon
- License: mit
- Created: 2018-08-30T23:20:12.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-25T03:43:08.000Z (over 1 year ago)
- Last Synced: 2024-07-18T02:49:36.258Z (4 months ago)
- Topics: emoji, emoji-keyboard, emoji-picker
- Language: Go
- Homepage:
- Size: 1.34 MB
- Stars: 25
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ep
⛏ Emoji Picker
`ep` is an emoji picker for the CLI.
### Demo:
![](demo.gif)
## Installation
```
go install github.com/bcongdon/ep
```### Via HomeBrew
```
brew tap bcongdon/ep
brew install ep
```(Brew definition is at
[bcongdon/homebrew-ep](https://github.com/bcongdon/homebrew-ep))## Usage
```
Usage of ./ep:
./ep [QUERY]
-noninteractive
If set, doesn't display emoji picker -- instead just outputting the first selection for the provided query.
-output string
The output of ep. Choices: clipboard, stdout (default "clipboard")
```Navigation can be done with the arrow keys. Pressing `Enter` copies the selected
emoji to the clipboard.### Examples
- `ep` - Opens the default emoji picker.
- `ep wink` - Opens the default emoji picker with the query "wink" already
entered
- `ep -noninteractive wink` - Copies the first search result for "wink" to the
clipboard
- `ep -noninteractive -output=stdout wink` - Outputs the first search result for
"wink" to stdout## Troubleshooting
- If you see blank squares in the emoji grid, these emojis cannot be rendered by
your terminal's font.## Acknowledgements
Emoji list sourced from [emojilib](https://github.com/muan/emojilib)
### Prior Art
- [Mojibar](https://github.com/muan/mojibar)