add: ahk: extra remaps

This commit is contained in:
qwjyh 2022-10-16 18:14:54 +09:00
parent 9e9782357e
commit 609a2f13ba
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,25 @@
; extra key remaps
; mainly for inputting special characters
; Play/Pause
sc121::
Send {Media_Play_Pause}
return
; Henkan/Muhenkan + - -> en, em dash
vk1D & vkBD::
Send {U+2013} ; en dash
return
vk1C & vkBD::
Send {U+2014} ; em dash
return
; Henkan/Muhenkan + {Space} -> ZWSP, ZWJ
vk1D & Space::
Send {U+200B} ; ZWSP
return
vk1C & Space::
Send {U+200D} ; ZWJ
return

View file

@ -62,3 +62,7 @@ return
; HankakuZenkaku to esc
sc029::
Send, {Escape}
; ==========================================
; include extra key remaps
#Include extra_remaps.ahk