本文介绍了自动热键,映射capslock :: ctrl后发出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您如何重新映射 + 以一致地发送 + (向上)? >这是我尝试过的:

How would you remap + to send + (Up) consistently?
Here is what I tried:

capslock::ctrl
^p::send {up}

在按住的同时,这第一次发送,
但是然后,除非我释放,然后再按一次.

While holding this sends the first time,
but then unless I release and then press it again.

我发现这种情况也会发生:

I found that it also happens with something like this:

OriginKey::DestinationKey
*DestinationKey & normalKey::maptoAnother

在不释放人工修饰符的情况下,它会继续插入normalKey NOT maptoAnother.

Without releasing the artificial modifier it keeps inserting normalKey NOT maptoAnother.

推荐答案

这是我最终使用的内容:

Here is what I ended up using:

capslock::ctrl
^p::send ^{up}

{blind}在这种情况下也可以使用,因为它避免释放

{blind} can also be used in this case, because it avoids releasing

^p::send {blind}{up}

这篇关于自动热键,映射capslock :: ctrl后发出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 18:27
查看更多