I am trying to use Autokey-py3 v0.93.10 (in Linux Mint 18.2), to generate Unicode characters using the keyboard.send_keys
command. Unfortunately none of the following attempts work.
keyboard.sendkeys("—")
keyboard.sendkeys(u"\u2014")
or this attempt copied from unicode.py:
import.paste_character("—")
Can someone advise me what I am missing?