diff options
author | Teddy Wing | 2019-07-29 19:54:43 +0200 |
---|---|---|
committer | Teddy Wing | 2019-07-29 19:54:43 +0200 |
commit | ceb12724c0d50d97eb2416c3f8fcd4dd65ab0e57 (patch) | |
tree | 00932dc30a82be8f71da586587b3b012a0ba905c | |
parent | 650d9b4a3ce33f93ccfd26b0dd251033d65bf08c (diff) | |
download | AutoHotkey-Scripts-ceb12724c0d50d97eb2416c3f8fcd4dd65ab0e57.tar.bz2 |
Add `return` to the end of hotkey mappings
Turns out this is required, otherwise statements in the following hotkey
definition get executed too.
See: https://www.autohotkey.com/docs/Hotkeys.htm#Intro
-rw-r--r-- | AutoHotkey.ahk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/AutoHotkey.ahk b/AutoHotkey.ahk index 4b83823..2354609 100644 --- a/AutoHotkey.ahk +++ b/AutoHotkey.ahk @@ -22,8 +22,10 @@ Send {Tab} Send {Space} Send ^{Tab} Send ^r +return ; Exit Notepad when not active ^#n:: Send #6 Send !fx +return |