为什么这会同时扩展"Co“和"co"?我想要一个寄存器指定的变量(只有"Co")。
::Co::
Send,
(
Constantine
)
return发布于 2018-12-30 04:42:26
热串的默认行为可以通过两种可能的方式进行更改:
1) #Hotstring指令,它影响脚本中该点以下的所有热字符串:
#Hotstring c ; case sensitive
::Co::Constantine ; Case sensitive
; ...
#Hotstring c0 ; case insensitive (turn off case sensitive)
::BtW::By the way
; ...2)将选项放在hotstring的第一对冒号内:
:c:Co::Constantine ; case sensitive
::BtW::By the way ; case insensitive (default)https://stackoverflow.com/questions/53972936
复制相似问题