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 等等
如果你有其他改键需求,还可以自己动手改脚本
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。