共计 750 个字符,预计需要花费 2 分钟才能阅读完成。
windows 输入法真是一言难尽,咱们来把它改成苹果格调。
首先须要下载一个改键利用 https://www.autohotkey.com/
(1.1 版本)
装置好之后,咱们来编写一个脚本,命名后缀为 .ahk
:
win2mac.ahk
; 无环境变量
#NoEnv
SetCapsLockState, AlwaysOff
SetStoreCapslockMode,Off
; 高过程
Process Priority,,High
CapsLock::
KeyWait, CapsLock, T0.3
If ErrorLevel {
SetCapsLockState, On
KeyWait, CapsLock
} else {Send, {ctrl down}{space}{ctrl up}
}
Return
Shift::
SetCapsLockState, Off
Return
!s::
Send, ^s
Return
!a::
Send, ^a
Return
!c::
Send, ^c
Return
!v::
Send, ^v
Return
!x::
Send, ^x
Return
!z::
Send, ^z
Return
!t::
Send, ^t
Return
!n::
Send, ^n
Return
!o::
Send, ^o
Return
!p::
Send, ^p
Return
!y::
Send, ^y
Return
!w::
Send, ^w
Return
!q::
Send, ^q
Return
!f::
Send, ^f
Return
!r::
Send, ^r
Return
保留之后,双击运行即可,当初你就能够体验苹果键盘输入了,have fun!
键盘阐明:
- 短按 capslk 切换中英文,长按 capslk 切换大写,短按 shift 切换小写
- ctrl+a, ctrl+c, ctrl+v 变成 alt+a, alt+c, alt+v 等等
如果你有其余改键需要,还能够本人入手改脚本
正文完