add: ahk: extra remaps
This commit is contained in:
parent
9e9782357e
commit
609a2f13ba
2 changed files with 29 additions and 0 deletions
25
dotfiles/ahk/extra_remaps.ahk
Normal file
25
dotfiles/ahk/extra_remaps.ahk
Normal 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
|
||||
|
|
@ -62,3 +62,7 @@ return
|
|||
; HankakuZenkaku to esc
|
||||
sc029::
|
||||
Send, {Escape}
|
||||
|
||||
; ==========================================
|
||||
; include extra key remaps
|
||||
#Include extra_remaps.ahk
|
||||
|
|
Loading…
Reference in a new issue