-
Notifications
You must be signed in to change notification settings - Fork 6
/
CommandScriptsToInclude.ahk
29 lines (24 loc) · 1.21 KB
/
CommandScriptsToInclude.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;====================================================================
; Include our utility functions used by some of the Commands first.
;====================================================================
#Include Commands\UtilityFunctions.ahk
; CUSTOM INCLUDES
#Include ..\Vars.ahk
;====================================================================
; Include the files with the Commands we want to include in the picker.
; You can put all of your commands in a single file, or break them into
; separate files (e.g General.ahk, Work.ahk, Personal.ahk, HomePC.ahk, etc.).
;====================================================================
#Include Commands\DefaultCommands.ahk
#Include Commands\MyCommands.ahk
; CUSTOM INCLUDES
#Include Commands\_Functions.ahk
#Include Commands\_Commands.ahk
;====================================================================
; Include any files containing HotKeys/HotStrings last, as any AddCommand
; functions defined after a HotKey/HotString won't be loaded at startup,
; and hence, won't show up in the Command Picker list.
;====================================================================
#Include Commands\DefaultHotkeys.ahk
; CUSTOM INCLUDES
#Include Commands\_HotKeys.ahk