]> Tony Duckles's Git Repositories (git.nynim.org) - autohotkey-scripts.git/blob - AutoHotkey.ahk
Init AutoHotKey
[autohotkey-scripts.git] / AutoHotkey.ahk
1 ; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
2 ; semicolon, such as this one, are comments. They are not executed.
3
4 ; This script has a special filename and path because it is automatically
5 ; launched when you run the program directly. Also, any text file whose
6 ; name ends in .ahk is associated with the program, which means that it
7 ; can be launched simply by double-clicking it. You can have as many .ahk
8 ; files as you want, located in any folder. You can also run more than
9 ; one ahk file simultaneously and each will get its own tray icon.
10
11 ;#################
12 ;### NOTEPAD++ ###
13 ; Control+Alt+N = Launch/activate Notepad++
14 ^!n::
15 IfWinExist Notepad++
16 WinActivate
17 else
18 Run C:\Program Files\Notepad++\notepad++.exe
19 return
20