1 Star 0 Fork 0

CloudsSeas/RemNote_AutohotKey

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
RemNote_AutoHotkey.ahk 2.04 KB
一键复制 编辑 原始数据 按行查看 历史
#SingleInstance Ignore ;;执行程序前先关闭程序
#Persistent
[::
if key_presses_左中括号 = 1 ;
{
SetTimer, KeyPressTimer, off
send,{BackSpace}
Send,{Text}`[`[
key_presses_左中括号 = 0
return
}
suspend ;暂停其他快捷键
key_presses_左中括号 = 1
send,[
suspend ;再重新启用其他快捷键
SetTimer, KeyPressTimer, 400 ; 在 400 毫秒内等待更多的键击.
return
<+1::
if key_presses_shift1 = 1 ;
{
SetTimer, KeyPressTimer, off
send,{BackSpace}
Send,{Text}`!`!
key_presses_shift1 = 0
return
}
key_presses_shift1 = 1
send,+1
SetTimer, KeyPressTimer, 400 ; 在 400 毫秒内等待更多的键击.
return
<+3::
if key_presses_shift3 = 1 ;
{
SetTimer, KeyPressTimer, off
send,{BackSpace}
Send,{Text}`#`#
key_presses_shift3 = 0
return
}
key_presses_shift3 = 1
SetTimer, KeyPressTimer, 400 ; 在 400 毫秒内等待更多的键击.
send,+3
return
<+4::
if key_presses_shift4 = 1 ;
{
SetTimer, KeyPressTimer, off
send,{BackSpace}
Send,{Text}`$`$
key_presses_shift4 = 0
return
}
key_presses_shift4 = 1
SetTimer, KeyPressTimer, 400 ; 在 400 毫秒内等待更多的键击.
send,+4
return
<+5::
if key_presses_shift5 = 1 ;
{
SetTimer, KeyPressTimer, off
send,{BackSpace}
Send,{Text}`%`%
key_presses_shift5 = 0
return
}
key_presses_shift5 = 1
SetTimer, KeyPressTimer, 400 ; 在 400 毫秒内等待更多的键击.
send,+5
return
KeyPressTimer:
SetTimer, KeyPressTimer, off
if key_presses_左中括号 = 2 ; 此键按下了一次.
{
Send,{Text}`[`[
}
if key_presses_shift1 = 2 ; 此键按下了一次.
{
Send,{Text}`!`!
}
if key_presses_shift3 = 2 ; 此键按下了一次.
{
Send,{Text}`#`#
}
if key_presses_shift4 = 2 ; 此键按下了一次.
{
Send,{Text}`$`$
}
if key_presses_shift5 = 2 ; 此键按下了一次.
{
Send,{Text}`%`%
}
key_presses_左中括号 = 0
key_presses_左中括号 = 0
key_presses_shift1 = 0
key_presses_shift3 = 0
key_presses_shift4 = 0
key_presses_shift5 = 0
return
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/CloudsSeas/RemNote_AutohotKey.git
git@gitee.com:CloudsSeas/RemNote_AutohotKey.git
CloudsSeas
RemNote_AutohotKey
RemNote_AutohotKey
master

搜索帮助