在jshell中创建自定义反馈模式

Create custom feedback mode in jshell

根据jshell中/set feedback的文档,有以下内置模式:

verbose, normal, concise, and silent

是否可以创建一个既简洁又无声的反馈模式?或者我们可以改变以上任何一种模式? 或者我们可以创建自己的自定义反馈模式吗?

您可以使用以下命令创建自己的自定义反馈模式:

/set mode <your-mode-name> -command|-quiet

其中 -command 选项表示您需要命令反馈。如果您不希望命令描述发生的操作,请使用 -quiet 而不是 -command

如果你想复制现有的模式,你可以这样做:

/set mode <your-mode-name> <existing-mode-name> -command|-quiet

例如

/set mode samplemode concise -command

为了合并两者的功能,您可能必须从命令行编辑您最初没有从中复制的属性。