We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PASTE VERBOSE LOG HERE
Windows 10
Write here
3.11
KeyDown doesn't work with spanish "ñ" (it doesn't break, but doesn't print anything). Possible solution in Windows 10 at least:
In HEADER, add: f"# -- coding: ISO-8859-1 --\n" f"import pyperclip\n"
in on_press add:
if key.char == 'ñ': self._capture.append("pyperclip.copy('ñ')") self._capture.append("pyautogui.hotkey('ctrl', 'v')") elif key.char == 'Ñ': self._capture.append("pyperclip.copy('Ñ')") self._capture.append("pyautogui.hotkey('ctrl', 'v')")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Checklist
Verbose log
Miscellaneous information
Operating System
Windows 10
Desktop Environment/Window Manager
Write here
Python version
3.11
Description
KeyDown doesn't work with spanish "ñ" (it doesn't break, but doesn't print anything).
Possible solution in Windows 10 at least:
In HEADER, add:
f"# -- coding: ISO-8859-1 --\n"
f"import pyperclip\n"
in on_press add:
The text was updated successfully, but these errors were encountered: