Skip to content

Instantly share code, notes, and snippets.

@kambara
Last active September 20, 2021 11:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kambara/65d46827f186aec365cfda2283f48f9e to your computer and use it in GitHub Desktop.
Save kambara/65d46827f186aec365cfda2283f48f9e to your computer and use it in GitHub Desktop.
#InstallKeybdHook
#UseHook
GroupAdd, Ignore, ahk_class UnrealWindow
GroupAdd, Ignore, ahk_exe blender.exe
GroupAdd, Ignore, ahk_exe Resolve.exe
#IfWinNotActive ahk_group Ignore
SetKeyDelay 0
; Emulate command key
!x::Send, ^x
!c::Send, ^c
!v::Send, ^v
!z::Send, ^z
!y::Send, ^y
!s::Send, ^s
!a::Send, ^a
!f::Send, ^f
!p::Send, ^p
!n::Send, ^n
!m::Send, #{Down}
!q::Send, !{F4}
!b::Send, ^b
; Browser operation
!w::Send, ^w
!t::Send, ^t
+!t::Send, +^t
+!n::Send, +^n
!l::Send, ^l
; Delete text
^h::Send, {Backspace}
^d::Send, {Delete}
^k::Send, {Shift down}{End}{Shift up}{Delete}
; Move cursor
^b::Send, {Left}
^f::Send, {Right}
^n::Send, {Down}
^p::Send, {Up}
^a::Send, {Home}
^e::Send, {End}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment