-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Updated version from 1.3.1 to 1.3.2.
- Changed file paths to use an absolute path (via A_ScriptDir) instead of a relative path to fix issues when the working directory is not the same as the directory that the script is in.
- Loading branch information
Showing
2 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
;==================================================================== | ||
; Include our utility functions used by some of the Commands first. | ||
;==================================================================== | ||
#Include Commands\UtilityFunctions.ahk | ||
#Include %A_ScriptDir%\Commands\UtilityFunctions.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 | ||
#Include %A_ScriptDir%\Commands\DefaultCommands.ahk | ||
#Include %A_ScriptDir%\Commands\MyCommands.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 | ||
#Include Commands\MyHotkeys.ahk | ||
#Include %A_ScriptDir%\Commands\DefaultHotkeys.ahk | ||
#Include %A_ScriptDir%\Commands\MyHotkeys.ahk |