Last active
February 13, 2024 12:33
-
-
Save Sov3rain/edcf8986b3ceead61ccbb447fbfc453c to your computer and use it in GitHub Desktop.
Auto Hotkey script thats send non-breaking spaces characters when CTRL+ALT+SPACE (on AZERTY layout) is pressed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
; CTRL+ALT+SPACE sends a non-breaking space character | |
^!Space::Send {U+00A0} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment