markdown AHK问题

Posted

tags:

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

* If AHK is suddenly not working correctly, try running the script as admin.   
* To create elevated shortcut, use [this guide](https://www.tenforums.com/tutorials/57690-create-elevated-shortcut-without-uac-prompt-windows-10-a.html)    
* If a keybind doesn't work when switching input language try substituting the keys with VK or SC versions (eg `vkE2` instead of `\` and `<`)  

```ahk
Capslock & Space::        ; ~ on caps enables caps-toggling
  ;code
Space & Capslock::        ; ~ on caps enables caps-toggling
  ;code

Capslock::Return          ; ~ on caps enables caps (except on combos where caps is the second key, eg: Space & Capslock)
```

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

markdown ahk系统(OS)输入语言

markdown ahk rebind默认

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

求一个ahk脚本

ahk脚本题。

单线逻辑或短路评估的 AHK 等效项是啥?