Autohotkey 为什么;Co";扩展“两个”;Co";及;co";自动热键?

Autohotkey 为什么;Co";扩展“两个”;Co";及;co";自动热键?,autohotkey,Autohotkey,为什么这同时扩展了“Co”和“Co”?我想要一个寄存器指定的变量(仅“Co”) 可以通过两种可能的方式更改热字符串的默认行为: 1) #Hotstring指令,它在物理上影响所有热字符串 在脚本中的该点下方: 2) 将选项放入hotstring的第一对冒号中: ::Co:: Send, ( Constantine ) return #Hotstring c ; case sensitive ::Co::Constantine ; Case sensitive ; ... #Hotstri

为什么这同时扩展了“Co”和“Co”?我想要一个寄存器指定的变量(仅“Co”)

可以通过两种可能的方式更改热字符串的默认行为:

1) #Hotstring指令,它在物理上影响所有热字符串 在脚本中的该点下方:

2) 将选项放入hotstring的第一对冒号中:

::Co::
Send, 
(
Constantine
)
return
#Hotstring c ; case sensitive
::Co::Constantine ; Case sensitive
; ...

#Hotstring c0 ; case insensitive (turn off case sensitive)
::BtW::By the way
; ...
:c:Co::Constantine ; case sensitive

::BtW::By the way ; case insensitive (default)