A visual picker tool that makes searching and picking unicode characters easier.
Searches unicode characters using regular expressions and displays the results to a dedicated buffer. Selected characters from dedicated buffer are inserted back to the point from the calling buffer.
The idea for this tool is to make it easier to search, pick, and insert unicode characters. Made with developing Emacs games in mind but can also be used for other uses.
You can install manually from github;
git clone https://github.com/accidentalrebel/emacs-unicode-picker.git
Then add this to your init:
(require 'unicode-picker)
Just call M-x unicode-picker
and then specify the string to search with.
Purcell's list-unicode-display package on how to search for unicode characters.
- Unicode categories for more flexible searching (i.e. emoticons, animals, etc).
- Should be able to search with the singular form of the given regexp string (i.e. "arrows" also searches for "arrow", "cards" for "card").
- Show the unicode details in the minibuffer or someplace else when a character is highlighted.