让我们试试宏 'line send delay' 方法?

conemu macros 'line send delay' method?

我经常使用 SecureCRT,我非常喜欢它的 'line send delay' 选项。它使您可以在通过映射键发送的行中注入以毫秒为单位的延迟。这真的很有帮助,因为映射键有时发送它们的命令对于 OS 来说太快了。例如:

command1\ncommand2\n

需要输入为:

$command1
$command2

不是:

$command1
command2
$

据我了解,ConEMU 的宏与 SecureCRT 的映射密钥非常相似。但是,我还没有想出 "line send delay" 选项。还有其他人知道该怎么做吗?

Print("command1\n"); Sleep(1000); Print("command2\n")