We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
实现 Pika 中命令的替换,具体效果如下: 在 Pika 的配置文件中可以设置部分命令的别名,如图中所示例如把 flushall 命令改成 360flushall,使用操作上和之前保持一致,只是命令名字进行了改变,如果需要此功能可以把注释解除
Pika
flushall
360flushall
在使用的时候利用别名去操作
通过替换 Pika 中的 CmdTable 来实现此功能
CmdTable
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
实现
Pika
中命令的替换,具体效果如下:在
Pika
的配置文件中可以设置部分命令的别名,如图中所示例如把flushall
命令改成360flushall
,使用操作上和之前保持一致,只是命令名字进行了改变,如果需要此功能可以把注释解除在使用的时候利用别名去操作
Proposed solution
通过替换
Pika
中的CmdTable
来实现此功能The text was updated successfully, but these errors were encountered: