-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如何把caps_f设置为ctrl_f? #94
Comments
试试这样? [Keys]
caps_f=keyFunc_send(^f) |
谢谢。还有些问题请教,新手,多多包涵:
|
capslock-plus/language/Simplified_Chinese.ahk Line 423 in e6390f0
那。。这可能是 ahk 或者计算器的问题吧,或者你试试 sendInput
加上双引号看看?人现在不在 windows 上,盲回的,没测试
你应该按 ahk 的符号规则,这应该是
现在确实没有,有需求的话可以自己 clone 源码修改,也欢迎提交代码合并更新,让其他人也能收益
加上双引号看看? |
感谢! |
补充例子 [Keys]
# 短按 Caps Lock -> 发送 Win + space
press_caps=keyFunc_send("#{space}")
# 短按 Caps Lock -> 发送 Ctrl + Shift
press_caps=keyFunc_send("{LControl down}{LShift down}{LShift up}{LControl up}") |
demo文件里似乎不支持ctrl组合键?我想用caps代替ctrl,谢谢大佬。
The text was updated successfully, but these errors were encountered: