I've got it working! To do it, open command.ahk and replace the original code with my code:
;Original Code
DefineHotkeys:
loop,9
{
Hotkey, %FastMoveModifiers%%A_Index%, WinHotkeys
Hotkey, %FastMoveModifiers%Numpad%A_Index%, WinHotkeys
}
Hotkey, %FastMoveModifiers%0, WinHotKey
Hotkey, %FastMoveModifiers%Numpad0, WinHotkeys
if FastMoveMeta <>
Hotkey, %FastMoveModifiers%%FastMoveMeta%, WinHotkeysMeta
return
WinHotkeys:
StringRight,Number,A_ThisHotkey,1
MoveToGrid(Number)
return
;My Code
;FastMove Works with F1-F12 as grids 11-22 by Expletive
DefineHotkeys:
NewHotKeys := {1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,sc0b:10,F1:11,F2:12:F3:13:F4:14:F5:15,F6:16,F7:17,F8:18,F9:19,F10:20,F11:21,F12:22,Numpad0:10,Numpad1:1,Numpad2:2,Numpad3:3,Numpad4:4,Numpad5:5,Numpad6:6,Numpad7:7,Numpad8:8,Numpad9:9}
For key, value in NewHotKeys {
if key
hotkey, %FastMoveMeta%%key%, WinHotKeys
}
if FastMoveMeta <>
Hotkey, %FastMoveModifiers%%FastMoveMeta%, WinHotkeysMeta
return
WinHotkeys:
StringReplace, KeyPressed, A_ThisHotKey, %FastMoveMeta%
Number := NewHotKeys[KeyPressed]
MoveToGrid(Number)
return
Edit: Ive noticed a couple of bugs:
1.) This code runs fine when run as .ahk but when compiling it, there's an error when it starts, probably because of the 0 key in newhotkeys, but I don't know why it'd only fail on compile.
Fixed:
2.) Pressing shift+3 seems to cause the window to shrink to nothing. I have no clue what's causing this. It doesn't seem to be related to %FastMoveMeta% since even when I change the meta to ^ for ctrl and restart it keeps doing it.Edit 2:
So I fixed Error 2, and now there isn't an error message about '' not being a valid key, however it still only seems to work when ran as a script. After compiling, there is no error, but fast move has no modifer meta , and when grids are selected with the #g command, grids above 9 can't be selected.
I have no idea why there would be differences between a script and a compiled script. If anyone here has experience with autohotkey, I'd appreciate some help. But for anyone using gridmove as a .ahk, the above code should work fine for you.