これ以前結構調べたのですがその時は見つけきれず、なぜか今回はサクッと見つけることができた。


アクティブなAutoHotkeyスクリプトを停止するにはどうすればよいですか?
https://jpn.projectbackpack.org/393257-how-do-i-stop-an-ONTYZI


Windows の操作を Emacs のキーバインドで行うための設定 (AutoHotKey版) - NTEmacs @ ウィキ - atwiki(アットウィキ)
https://w.atwiki.jp/ntemacs/pages/20.html

その他若干修正して今使っているものを全量貼っておきます。

;;
;; An autohotkey script that provides gtk-emacs-key-theme like keybinding on Windows
;; forked from https://github.com/usi3/emacs.ahk
;;
#InstallKeybdHook
#UseHook

; The following line is a contribution of NTEmacs wiki http://www49.atwiki.jp/ntemacs/pages/20.html
SetKeyDelay 0

; Applications you want to disable emacs-like keybindings
; (Please comment out applications you don't use)
is_target()
{
IfWinActive,ahk_class ConsoleWindowClass ; Cygwin
Return 1
IfWinActive,ahk_class MEADOW ; Meadow
Return 1
IfWinActive,ahk_class cygwin/x X rl-xterm-XTerm-0
Return 1
IfWinActive,ahk_class MozillaUIWindowClass ; keysnail on Firefox
Return 1
; Avoid VMwareUnity with AutoHotkey
IfWinActive,ahk_class VMwareUnityHostWndClass
Return 1
IfWinActive,ahk_class Vim ; GVIM
Return 1
; IfWinActive,ahk_class SWT_Window0 ; Eclipse
; Return 1
; IfWinActive,ahk_class Xming X
; Return 1
; IfWinActive,ahk_class SunAwtFrame
; Return 1
; IfWinActive,ahk_class Emacs ; NTEmacs
; Return 1
; IfWinActive,ahk_class XEmacs ; XEmacs on Cygwin
; Return 1
Return 0
}

;
; b
; move cursor backward
;
^b::
If is_target()
Send %A_ThisHotkey%
Else
Send {Left}
Return

;
; b
; move cursor backward selecting chars
;
+^b::
If is_target()
Send %A_ThisHotkey%
Else
Send +{Left}
Return

;
; f
; move cursor forward
;
^f::
If is_target()
Send %A_ThisHotkey%
Else
Send {Right}
Return

;
; f
; move cursor forward selecting chars
;
+^f::
If is_target()
Send %A_ThisHotkey%
Else
Send +{Right}
Return

;
; p
; move cursor up
;
^p::
If is_target()
Send %A_ThisHotkey%
Else
Send {Up}
Return

;
; p
; move cursor up selecting chars
;
+^p::
If is_target()
Send %A_ThisHotkey%
Else
Send +{Up}
Return

;
; n
; move cursor down
;
^n::
If is_target()
Send %A_ThisHotkey%
Else
Send {Down}
Return

;
; n
; move cursor down selecting chars
;
+^n::
If is_target()
Send %A_ThisHotkey%
Else
Send +{Down}
Return

;
; d
; delete following char
;
^d::
If is_target()
Send %A_ThisHotkey%
Else
Send {Del}
Return

;
; h
; delete previous char(Backspace)
;
^h::
If is_target()
Send %A_ThisHotkey%
Else
Send {BS}
Return

;
; a
; move cursor beginning of current line
;
^a::
If is_target()
Send %A_ThisHotkey%
Else
Send {Home}
Return

;
; a
; move cursor beginning of current line selecting chars
;
+^a::
If is_target()
Send %A_ThisHotkey%
Else
Send +{Home}
Return

;
; e
; move cursor end of current line
;
^e::
If is_target()
Send %A_ThisHotkey%
Else
Send {End}
Return

;
; e
; move cursor end of current line selecting chars
;
+^e::
If is_target()
Send %A_ThisHotkey%
Else
Send +{End}
Return

;
; b
; move cursor one word backward
;
!b::
If is_target()
Send %A_ThisHotkey%
Else
Send ^{Left}
Return

;
; b
; move cursor one word backward selecting chars
;
+!b::
If is_target()
Send %A_ThisHotkey%
Else
Send +^{Left}
Return


;
; c
; copy string
;
^c::
if is_target()
Send %A_ThisHotkey%
Else
; kill_ring_save()
Send %A_ThisHotkey%
}
Return
;
; f
; move cursor one word forward
;
!f::
If is_target()
Send %A_ThisHotkey%
Else
Send ^{Right}
Return

;
; f
; move cursor one word forward selecting chars
;
+!f::
If is_target()
Send %A_ThisHotkey%
Else
Send +^{Right}
Return

;
; w
; cut
;
^w::
If is_target()
Send %A_ThisHotkey%
Else
Send ^x
Return

;
; y
; paste
;
^y::
If is_target()
Send %A_ThisHotkey%
Else
Send ^v
Return

;
; k
; delete chars from cursor to end of line
;
^k::
If is_target()
Send %A_ThisHotkey%
Else
Send {ShiftDown}{END}{SHIFTUP}
Sleep 50
Send {Del}
;Send ^x
Return

;
; u
; delete chars from cursor to beginning of line
;
^u::
If is_target()
Send %A_ThisHotkey%
Else
{
Send {ShiftDown}{HOME}{SHIFTUP}
Sleep 50
Send {Del}
;Send ^x
}
Return

;
; m
; new line(enter)
;
^m::
If is_target()
Send %A_ThisHotkey%
Else
Send {Enter}
Return

;
; r
; find
;
^r::
If is_target()
Send %A_ThisHotkey%
Else
Send ^f
Return

;
; \
; select all
;
^\::
If is_target()
Send %A_ThisHotkey%
Else
Send ^a
Return