repeat.pl
来自「Unix下的MUD客户端程序」· PL 代码 · 共 12 行
PL
12 行
# Repeat the last command entered when just enter is pressedsub check_repeat { if ($_ eq "") { $_ = $LastCommandEntered; } else { $LastCommandEntered = $_; }}userinput_add(\&check_repeat);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?