现已发布!阅读关于 11 月份的新功能和修复。

通知

通知显示来自 VS Code 右下角的简短信息。

Example of a notification

您可以发送三种类型的通知

限制发送的通知数量以尊重用户的注意力非常重要。为了帮助您决定是否应该显示通知,请遵循我们的通知决策树

Show a multi-step quick pick if multi step user input is immediately needed. If user input is immediately needed but it is not multi-step show a modal dialog. If you need to show progress that is low priority show the progress in the status bar. If the interaction is triggered by the user find the right moment to show the notification and only then show it. If you need to show multiple notifications try to combine them into one. If the user does not really need to be notified consider to not show anything and relax.

通知示例

Information notification

此通知在用户运行 更新版本 命令后出现。请注意,没有其他操作,纯粹是信息性的。

Warning notification

此示例突出显示需要用户输入的功能问题,并显示解决问题的操作。

Error notification

此示例显示失败通知,并提供解决问题的操作。

✔️ 应该做

  • 仅在绝对必要时发送通知,以尊重用户的注意力
  • 为每个通知添加 不再显示 选项
  • 一次显示一个通知

❌ 不应该做

  • 发送重复通知
  • 用于推广
  • 在首次安装时请求反馈
  • 如果没有操作,则显示操作

进度通知

当需要显示不确定时间范围的进度时(例如,设置环境),您可以使用进度通知。这种类型的全局进度通知应该作为最后的手段使用,因为进度最好保持在上下文中(在视图或编辑器内)。

✔️ 应该做

  • 显示链接以查看更多详细信息(如日志)
  • 在设置过程中显示信息(正在初始化、构建等)
  • 提供取消操作的选项(如果适用)
  • 为超时场景添加计时器

❌ 不应该做

  • 让通知在进行中运行

Progress notification

此示例使用进度通知来显示远程连接的设置,同时还提供指向输出日志的链接(详细信息)。