markdown ahk rebind默认

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown ahk rebind默认相关的知识,希望对你有一定的参考价值。

Override key but trigger its default by another hotkey:  
from [Send Key in AutoHotKey without recursion](https://superuser.com/questions/819296/send-key-in-autohotkey-without-recursion)  

```
#UseHook, On

w::    
  ;...
  Return

+w::
  Send {F1}
  Return
```

以上是关于markdown ahk rebind默认的主要内容,如果未能解决你的问题,请参考以下文章

markdown ahk重新绑定非修饰键

markdown ahk系统(OS)输入语言

Runstats,Reorgchk,Reorg,Rebind

notepad++中如何让autohotkey 代码高亮

(template) rebind<> 做啥?

请问ahk里面如何实现按住不放某键触发后续事件?