diff options
author | Teddy Wing | 2019-07-29 20:09:50 +0200 |
---|---|---|
committer | Teddy Wing | 2019-07-29 20:09:50 +0200 |
commit | 3ce13105be08ff4ec3bea2afb6518cdbc4da1fc4 (patch) | |
tree | bb57f98f9756b35166c878340c9b315d5bc02a43 | |
parent | 713fd1b35298d3b4df883285efc99cb604ac1569 (diff) | |
download | AutoHotkey-Scripts-3ce13105be08ff4ec3bea2afb6518cdbc4da1fc4.tar.bz2 |
^#n: Reactivate the current application after quitting Notepad
The current application would lose focus after pressing the shortcut.
Reactivate it with Alt-Tab.
-rw-r--r-- | AutoHotkey.ahk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/AutoHotkey.ahk b/AutoHotkey.ahk index c5fdcd8..6bd18a1 100644 --- a/AutoHotkey.ahk +++ b/AutoHotkey.ahk @@ -28,6 +28,7 @@ return ^#n:: Send #6 Send !fx +Send !{Tab} ; Reactivate current application return ; Reload this script |