Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/matlab/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Autohotkey Ctrl+中的冲突;F_Autohotkey - Fatal编程技术网

Autohotkey Ctrl+中的冲突;F

Autohotkey Ctrl+中的冲突;F,autohotkey,Autohotkey,我有一个关于自动热键的问题。我对这个问题困惑了至少一个月。我想实现以下关键重映射: ctrl + f ==> right arrow ctrl + shift + f ==> ctrl + f 但在我配置之后: ^f::Send {Right} ^+f::Send ^f Ctrl+f和Ctrl+Shift+f都等于向右箭头。 有人能解决这样的问题吗?提前谢谢你 最后,我找到了一个类似的答案。在这之后,我用的是: $^f::Send {Right} $^+f::Send ^f 只

我有一个关于自动热键的问题。我对这个问题困惑了至少一个月。我想实现以下关键重映射:

ctrl + f ==> right arrow
ctrl + shift + f ==> ctrl + f
但在我配置之后:

^f::Send {Right}
^+f::Send ^f
Ctrl+f
Ctrl+Shift+f
都等于
向右箭头

有人能解决这样的问题吗?提前谢谢你

最后,我找到了一个类似的答案。在这之后,我用的是:

$^f::Send {Right}
$^+f::Send ^f

只需在前面添加
$
,它就可以完美地工作了!:-)我现在很兴奋。

我想你是说双方都发了箭吧?