– 代理会话日,2月19日

产品图标参考

Visual Studio Code 包含一组内置图标,这些图标用于视图和编辑器,也可用于悬停提示、状态栏以及扩展。这些图标是产品图标,而不是在整个 UI 中用于文件名旁边的文件图标

随 VS Code 提供的产品图标包含在 Codicon 图标字体 中,并构成默认产品图标主题。扩展可以提供新的 产品图标主题 来重新定义这些图标,并为 VS Code 提供新的外观。

为了允许这样做,所有产品图标都由一个 ID 标识。图标标识符用于 UI 组件中的标签($(pencil))、API 中的 ThemeIcon 以及需要图标的贡献中。

图标标识符到实际图标字形的关联发生在产品图标主题中。

标签中的图标

图标可用于悬停提示中的 Markdown 标签、StatusBarItem 文本和 QuickPickItem 标签 API。在 Markdown 中添加图标的语法是 $(iconIdentifier)

$(alert);

您还可以嵌入文本并使用多个图标

$(eye) $(heart) $(mark-github) GitHub

要在标签中放置文字 ${...},请使用反斜杠转义 $

\$(eye)

动画

您可以通过将 ~spin 附加到图标名称来为以下图标应用旋转动画

  • sync
  • loading
  • gear
$(sync~spin)

图标贡献点

图标贡献点允许扩展通过 ID 定义额外的图标,以及一个默认图标。然后,扩展(或依赖该扩展的任何其他扩展)可以在标签($(iconId))或可以使用 ThemeIcon 的所有位置(new ThemeIcon("iconId"))中使用该图标 ID。

"contributes": {
  "icons": {
        "distro-ubuntu": {
            "description": "Ubuntu icon",
            "default": {
                "fontPath": "./distroicons.woff",
                "fontCharacter": "\\E001"
            }
        },
        "distro-fedora": {
            "description": "Ubuntu icon",
            "default": {
                "fontPath": "./distroicons.woff",
                "fontCharacter": "\\E002"
            }
        }
    }
}

产品图标主题可以重新定义图标(如果它们知道图标 ID)。

图标列表

以下是按标识符排列的内置产品图标列表。

图标的 ID 标识了图标的使用位置。默认 codicon ID 描述了默认情况下使用的 codicon 库中的哪个图标,预览显示了该图标的外观。

产品图标主题 可以替换每个图标,以及 codicon 库中的所有图标。

预览 标识符 默认 codicon ID 描述
accounts-view-bar-icon account 视图栏中的帐户图标。
breakpoints-activate activate-breakpoints 断点视图中“激活”操作的图标。
breakpoints-remove-all close-all 断点视图中“删除全部”操作的图标。
breakpoints-view-icon debug-alt 断点视图的视图图标。
callhierarchy-incoming call-incoming 呼叫层次结构视图中传入调用的图标。
callhierarchy-outgoing call-outgoing 呼叫层次结构视图中传出调用的图标。
callstack-view-icon debug-alt 呼叫堆栈视图的视图图标。
callstack-view-session bug 呼叫堆栈视图中会话图标的图标。
chat-editor-label-icon comment-discussion 聊天编辑器标签的图标。
comments-view-icon comment-discussion 评论视图的视图图标。
debug-breakpoint debug-breakpoint 断点的图标。
debug-breakpoint-conditional debug-breakpoint-conditional 条件断点的图标。
debug-breakpoint-conditional-disabled debug-breakpoint-conditional-disabled 禁用条件断点的图标。
debug-breakpoint-conditional-unverified debug-breakpoint-conditional-unverified 未验证条件断点的图标。
debug-breakpoint-data debug-breakpoint-data 数据断点的图标。
debug-breakpoint-data-disabled debug-breakpoint-data-disabled 禁用数据断点的图标。
debug-breakpoint-data-unverified debug-breakpoint-data-unverified 未验证数据断点的图标。
debug-breakpoint-disabled debug-breakpoint-disabled 禁用断点的图标。
debug-breakpoint-function debug-breakpoint-function 函数断点的图标。
debug-breakpoint-function-disabled debug-breakpoint-function-disabled 禁用函数断点的图标。
debug-breakpoint-function-unverified debug-breakpoint-function-unverified 未验证函数断点的图标。
debug-breakpoint-log debug-breakpoint-log 日志断点的图标。
debug-breakpoint-log-disabled debug-breakpoint-log-disabled 禁用日志断点的图标。
debug-breakpoint-log-unverified debug-breakpoint-log-unverified 未验证日志断点的图标。
debug-breakpoint-unsupported debug-breakpoint-unsupported 不支持的断点的图标。
debug-breakpoint-unverified debug-breakpoint-unverified 未验证断点的图标。
debug-collapse-all collapse-all 调试视图中“折叠全部”操作的图标。
debug-configure gear 调试配置操作的图标。
debug-console debug-console 打开调试控制台的图标。
debug-console-clear-all clear-all 调试控制台中“清除全部”操作的图标。
debug-console-evaluation-input arrow-small-right 调试求值输入标记的图标。
debug-console-evaluation-prompt chevron-right 调试求值提示的图标。
debug-console-view-icon debug-console 调试控制台视图的视图图标。
debug-continue debug-continue 调试继续操作的图标。
debug-disconnect debug-disconnect 调试断开连接操作的图标。
debug-gripper gripper 调试栏抓取手的图标。
debug-hint debug-hint 编辑器字形边距中显示的断点提示的图标。
debug-pause debug-pause 调试暂停操作的图标。
debug-restart debug-restart 调试重新启动操作的图标。
debug-restart-frame debug-restart-frame 调试重新启动帧操作的图标。
debug-reverse-continue debug-reverse-continue 调试反向继续操作的图标。
debug-stackframe debug-stackframe 编辑器字形边距中显示的堆栈帧的图标。
debug-stackframe-focused debug-stackframe-focused 编辑器字形边距中显示的聚焦堆栈帧的图标。
debug-start debug-start 调试启动操作的图标。
debug-step-back debug-step-back 调试后退操作的图标。
debug-step-into debug-step-into 调试进入操作的图标。
debug-step-out debug-step-out 调试退出操作的图标。
debug-step-over debug-step-over 调试跨过操作的图标。
debug-stop debug-stop 调试停止操作的图标。
default-view-icon window 默认视图图标。
diff-editor-next-change arrow-down 差异编辑器中“下一步更改”操作的图标。
diff-editor-previous-change arrow-up 差异编辑器中“上一步更改”操作的图标。
diff-editor-toggle-whitespace whitespace 差异编辑器中“切换空格”操作的图标。
diff-insert add 差异编辑器中插入的行装饰。
diff-remove remove 差异编辑器中删除的行装饰。
diff-review-close close 差异评审中的“关闭”图标。
diff-review-insert add 差异评审中的“插入”图标。
diff-review-remove remove 差异评审中的“删除”图标。
disassembly-editor-label-icon debug 反汇编编辑器标签的图标。
explorer-view-icon files 资源管理器视图的视图图标。
extensions-clear-search-results clear-all 扩展视图中“清除搜索结果”操作的图标。
extensions-configure-recommended pencil 扩展视图中“配置推荐扩展”操作的图标。
extensions-editor-label-icon extensions 扩展编辑器标签的图标。
extensions-filter filter 扩展视图中“筛选”操作的图标。
extensions-info-message info 扩展编辑器中显示的信息消息的图标。
extensions-install-count cloud-download 扩展视图和编辑器中显示在安装计数旁边的图标。
extensions-install-local-in-remote cloud-download 扩展视图中“在远程安装本地扩展”操作的图标。
extensions-install-workspace-recommended cloud-download 扩展视图中“安装工作区推荐扩展”操作的图标。
extensions-manage gear 扩展视图中“管理”操作的图标。
extensions-rating star 扩展视图和编辑器中显示在评级旁边的图标。
extensions-refresh refresh 扩展视图中“刷新”操作的图标。
extensions-remote remote 扩展视图和编辑器中指示扩展是远程的图标。
extensions-star-empty star-empty 扩展编辑器中用于评级的空星图标。
extensions-star-full star-full 扩展编辑器中用于评级的满星图标。
extensions-star-half star-half 扩展编辑器中用于评级的半星图标。
extensions-sync-enabled sync 指示扩展已同步的图标。
extensions-sync-ignored sync-ignored 指示扩展在同步时被忽略的图标。
extensions-view-icon extensions 扩展视图的视图图标。
extensions-warning-message warning 扩展编辑器中显示警告消息的图标。
find-collapsed chevron-right 指示编辑器查找小部件已折叠的图标。
find-expanded chevron-down 指示编辑器查找小部件已展开的图标。
find-next-match arrow-down 编辑器查找小部件中“查找下一个”的图标。
find-previous-match arrow-up 编辑器查找小部件中“查找上一个”的图标。
find-replace replace 编辑器查找小部件中“替换”的图标。
find-replace-all replace-all 编辑器查找小部件中“全部替换”的图标。
find-selection selection 编辑器查找小部件中“在所选内容中查找”的图标。
folding-collapsed chevron-right 编辑器字形边距中折叠区域的图标。
folding-expanded chevron-down 编辑器字形边距中展开区域的图标。
getting-started-beginner lightbulb 用于入门的初学者类别的图标
getting-started-codespaces github 用于入门的 codespaces 类别的图标
getting-started-item-checked pass-filled 用于表示已完成的入门项目
getting-started-item-unchecked circle-large-outline 用于表示未完成的入门项目
getting-started-setup heart 用于入门的设置类别的图标
goto-next-location arrow-down 转到下一个编辑器位置的图标。
goto-previous-location arrow-up 转到上一个编辑器位置的图标。
keybindings-add add 键绑定 UI 中“添加”操作的图标。
keybindings-edit edit 键绑定 UI 中“编辑”操作的图标。
keybindings-editor-label-icon keyboard 键绑定编辑器标签的图标。
keybindings-record-keys record-keys 键绑定 UI 中“记录键”操作的图标。
keybindings-sort sort-precedence 键绑定 UI 中“按优先级排序”切换的图标。
loaded-scripts-view-icon debug-alt 已加载脚本视图的视图图标。
marker-navigation-next chevron-down 转到下一个标记的图标。
marker-navigation-previous chevron-up 转到上一个标记的图标。
markers-view-filter filter 标记视图中筛选配置的图标。
markers-view-icon warning 标记视图的视图图标。
markers-view-multi-line-collapsed chevron-down 标记视图中指示折叠多行的图标。
markers-view-multi-line-expanded chevron-up 标记视图中指示显示多行的图标。
multi-diff-editor-label-icon diff-multiple 多差异编辑器标签的图标。
notebook-clear clear-all 清除笔记本编辑器中单元格输出的图标。
notebook-collapsed chevron-right 笔记本编辑器中用于标注折叠部分的图标。
notebook-delete-cell trash 笔记本编辑器中用于删除单元格的图标。
notebook-edit pencil 笔记本编辑器中用于编辑单元格的图标。
notebook-execute play 笔记本编辑器中用于执行的图标。
notebook-execute-all run-all 笔记本编辑器中用于执行所有单元格的图标。
notebook-expanded chevron-down 笔记本编辑器中用于标注展开部分的图标。
notebook-kernel-configure settings-gear 笔记本编辑器中内核配置小部件的配置图标。
notebook-kernel-select server-environment 笔记本编辑器中用于选择内核的配置图标。
notebook-mimetype code 笔记本编辑器中用于表示 mime 类型的图标。
notebook-move-down arrow-down 笔记本编辑器中用于向下移动单元格的图标。
notebook-move-up arrow-up 笔记本编辑器中用于向上移动单元格的图标。
notebook-open-as-text file-code 用于在文本编辑器中打开笔记本的图标。
notebook-render-output 预览 在差异编辑器中渲染输出的图标。
notebook-revert discard 笔记本编辑器中用于撤销的图标。
notebook-split-cell split-vertical 笔记本编辑器中用于拆分单元格的图标。
notebook-state-error error 笔记本编辑器中用于指示错误状态的图标。
notebook-state-success check 笔记本编辑器中用于指示成功状态的图标。
notebook-stop primitive-square 笔记本编辑器中用于停止执行的图标。
notebook-stop-edit check 笔记本编辑器中用于停止编辑单元格的图标。
notebook-unfold unfold 笔记本编辑器中用于展开单元格的图标。
notifications-clear close 通知中清除操作的图标。
notifications-clear-all clear-all 通知中清除所有操作的图标。
notifications-collapse chevron-down 通知中折叠操作的图标。
notifications-configure gear 通知中配置操作的图标。
notifications-expand chevron-up 通知中展开操作的图标。
notifications-hide chevron-down 通知中隐藏操作的图标。
open-editors-view-icon book 打开的编辑器视图的视图图标。
outline-view-icon symbol-class 大纲视图的视图图标。
output-view-icon output 输出视图的视图图标。
panel-close close 关闭面板的图标。
panel-maximize chevron-up 最大化面板的图标。
panel-restore chevron-down 恢复面板的图标。
parameter-hints-next chevron-down 显示下一个参数提示的图标。
parameter-hints-previous chevron-up 显示上一个参数提示的图标。
ports-forward-icon plus 转发操作的图标。
ports-open-browser-icon globe 打开浏览器操作的图标。
ports-stop-forward-icon x 停止转发操作的图标。
ports-view-icon plug 远程端口视图的视图图标。
preferences-clear-input clear-all 设置和键绑定 UI 中清除输入的图标。
preferences-open-settings go-to-file 打开设置命令的图标。
private-ports-view-icon lock 表示私有远程端口的图标。
public-ports-view-icon eye 表示公共远程端口的图标。
refactor-preview-view-icon lightbulb 重构预览视图的视图图标。
remote-explorer-documentation book 远程资源管理器视图中的文档图标。
remote-explorer-feedback twitter 远程资源管理器视图中的反馈图标。
remote-explorer-get-started star 远程资源管理器视图中的入门图标。
remote-explorer-report-issues comment 远程资源管理器视图中的报告问题图标。
remote-explorer-review-issues issues 远程资源管理器视图中的审查问题图标。
remote-explorer-view-icon remote-explorer 远程资源管理器视图的视图图标。
review-comment-collapse chevron-up 折叠审查评论的图标。
run-view-icon debug-alt 运行和调试视图的视图图标。
runtime-extensions-editor-label-icon extensions 运行时扩展编辑器标签的图标。
search-clear-results clear-all 搜索视图中清除结果的图标。
search-collapse-results collapse-all 搜索视图中折叠结果的图标。
search-details ellipsis 使搜索详细信息可见的图标。
search-editor-label-icon search 搜索编辑器标签的图标。
search-expand-results expand-all 搜索视图中展开结果的图标。
search-hide-replace chevron-right 搜索视图中折叠替换部分的图标。
search-new-editor new-file 打开新搜索编辑器的操作的图标。
search-refresh refresh 搜索视图中刷新图标。
search-remove close 删除搜索结果的图标。
search-replace replace 搜索视图中替换的图标。
search-replace-all replace-all 搜索视图中全部替换的图标。
search-show-context list-selection 切换搜索编辑器上下文的图标。
search-show-replace chevron-down 搜索视图中展开替换部分的图标。
search-stop search-stop 搜索视图中停止的图标。
search-view-icon search 搜索视图的视图图标。
settings-add add 设置 UI 中添加操作的图标。
settings-discard discard 设置 UI 中丢弃操作的图标。
settings-edit edit 设置 UI 中编辑操作的图标。
settings-editor-label-icon settings 设置编辑器标签的图标。
settings-folder-dropdown triangle-down 拆分 JSON 设置编辑器中文件夹下拉按钮的图标。
settings-group-collapsed chevron-right 拆分 JSON 设置编辑器中折叠部分的图标。
settings-group-expanded chevron-down 拆分 JSON 设置编辑器中展开部分的图标。
settings-more-action gear 设置 UI 中“更多操作”操作的图标。
settings-remove close 设置 UI 中删除操作的图标。
settings-sync-view-icon sync 设置同步视图的视图图标。
settings-view-bar-icon settings-gear 视图栏中的设置图标。
source-control-view-icon source-control 源代码管理视图的视图图标。
suggest-more-info chevron-right 建议小部件中更多信息的图标。
tasks-list-configure gear 任务选择列表中配置图标。
tasks-remove close 任务选择列表中删除图标。
terminal-kill trash 终止终端实例的图标。
terminal-new add 创建新终端实例的图标。
terminal-rename gear 终端快速菜单中重命名的图标。
terminal-view-icon terminal 终端视图的视图图标。
test-view-icon beaker 测试视图的视图图标。
testing-cancel-icon close 取消正在进行的测试运行的图标。
testing-debug-icon debug-alt “调试测试”操作的图标。
testing-error-icon warning 测试出错时显示的图标。
testing-failed-icon close 测试失败时显示的图标。
testing-passed-icon pass 测试通过时显示的图标。
testing-queued-icon watch 测试正在排队时显示的图标。
testing-run-all-icon run-all “运行所有测试”操作的图标。
testing-run-icon run “运行测试”操作的图标。
testing-show-as-list-icon list-tree 测试资源管理器禁用为树形结构时显示的图标。
testing-skipped-icon debug-step-over 测试跳过时显示的图标。
testing-unset-icon circle-outline 测试处于未设置状态时显示的图标。
timeline-open history 打开时间轴操作的图标。
timeline-pin pin 固定时间轴操作的图标。
timeline-refresh refresh 刷新时间轴操作的图标。
timeline-unpin pinned 取消固定时间轴操作的图标。
timeline-view-icon history 时间轴视图的视图图标。
variables-view-icon debug-alt 变量视图的视图图标。
view-pane-container-collapsed chevron-right 折叠的视图窗格容器的图标。
view-pane-container-expanded chevron-down 展开的视图窗格容器的图标。
watch-expressions-add add 监视视图中添加操作的图标。
watch-expressions-add-function-breakpoint add 监视视图中添加函数断点的操作的图标。
watch-expressions-remove-all close-all 监视视图中“删除全部”操作的图标。
watch-view-icon debug-alt 监视视图的视图图标。
widget-close close 小部件中关闭操作的图标。
workspace-trust-editor-label-icon shield 工作区信任编辑器标签的图标。

Codicon 库包含 VS Code 视图中使用的所有图标,以及一组有用的图标。

VS Code 扩展可以使用这些图标在标签、视图和树中。

预览 标识符
account
activate-breakpoints
add
alert
archive
数组
arrow-both
arrow-circle-down
arrow-circle-left
arrow-circle-right
arrow-circle-up
arrow-down
arrow-left
arrow-right
arrow-small-down
arrow-small-left
arrow-small-right
arrow-small-up
arrow-swap
arrow-up
azure-devops
azure
beaker-stop
beaker
bell
bell-dot
bell-slash
bell-slash-dot
bold
book
bookmark
bracket-dot
bracket-error
bracket
briefcase
broadcast
browser
bug
calendar
call-incoming
call-outgoing
case-sensitive
check
check-all
checklist
chevron-down
chevron-left
chevron-right
chevron-up
chip
chrome-close
chrome-maximize
chrome-minimize
chrome-restore
circle-filled
circle-large-filled
circle-large-outline
circle-outline
circle-slash
circuit-board
clear-all
剪贴板
时钟
克隆
close
close-all
关闭未保存
cloud-download
云上传
code
coffee
collapse-all
颜色模式
组合
comment
添加评论
comment-discussion
评论草稿
未解决的评论
比较更改
指南针-激活
指南针-点
指南针
控制台
Copilot
复制
信用卡
破折号
仪表盘
数据库
调试全部
debug
debug-alt
debug-alt-small
debug-breakpoint
debug-breakpoint-conditional
debug-breakpoint-conditional-disabled
debug-breakpoint-conditional-unverified
debug-breakpoint-data
debug-breakpoint-data-disabled
debug-breakpoint-data-unverified
debug-breakpoint-disabled
debug-breakpoint-function
debug-breakpoint-function-disabled
debug-breakpoint-function-unverified
debug-breakpoint-log
debug-breakpoint-log-disabled
debug-breakpoint-log-unverified
debug-breakpoint-unsupported
debug-breakpoint-unverified
debug-console
调试-继续-小
debug-continue
调试-覆盖率
debug-disconnect
debug-hint
调试-逐行
debug-pause
调试-重新运行
debug-restart
debug-restart-frame
debug-reverse-continue
debug-stackframe
调试-堆栈帧-激活
调试-堆栈帧-点
debug-stackframe-focused
debug-start
debug-step-back
debug-step-into
debug-step-out
debug-step-over
debug-stop
桌面下载
设备-摄像头
设备-摄像头-视频
设备-桌面
设备-移动
差异
差异-已添加
差异-已忽略
差异-已修改
差异-已删除
差异-已重命名
discard
edit
编辑器布局
ellipsis
空窗口
错误-小
error
排除
expand-all
导出
extensions
eye
眼睛-关闭
眼睛-取消关注
眼睛-关注
反馈
file
文件-添加
文件-二进制
file-code
文件-目录
文件-目录-创建
文件-媒体
文件-PDF
文件-子模块
文件-符号链接-目录
文件-符号链接-文件
文件-文本
文件-ZIP
files
筛选-填充
filter
火焰
折叠
折叠-向下
折叠-向上
folder
文件夹-激活
文件夹-库
文件夹-打开
game
收集
gear
礼物
Gist
Gist-Fork
Gist-新建
Gist-私有
Gist-密钥
Git-分支
Git-分支-创建
Git-分支-删除
Git-提交
Git-比较
Git-获取
Git-Fork-私有
Git-合并
Git-Pull-请求
Git-Pull-请求-已放弃
Git-Pull-请求-已关闭
Git-Pull-请求-创建
Git-Pull-请求-草稿
Git-Pull-请求-新更改
Git-Pull-请求-转到更改
github
GitHub-操作
GitHub-替代
GitHub-反转
globe
go-to-file
抓取器
图表
图表-左
图表-线
图表-散点
gripper
按引用类型分组
heart
history
水平线
Hubot
收件箱
缩进
info
插入
检查
问题-已关闭
问题-草稿
问题-已打开
问题-重新打开
issues
斜体
泽西岛
JSON
水平连字符
垂直连字符
密钥
keyboard
法律
图层-激活
图层-点
图层
布局-活动栏-左
布局-活动栏-右
布局-居中
布局-菜单栏
布局-面板-居中
布局-面板-对齐
布局-面板-左
布局-面板-右
布局-面板
布局-侧边栏-左
布局-侧边栏-右
布局-状态栏
布局
灯泡
lightbulb
灯泡-自动修复
链接
外部链接
列表-筛选
列表-扁平
列表-有序
list-selection
list-tree
列表-无序
实时共享
loading
位置
锁-小
lock
登录
注销
GitHub-标志
磁铁
邮件
邮件-已读
邮件-回复
标记-GitHub
Markdown
扩音器
提及
菜单
合并
麦克风
麦克风-填充
显微镜
里程碑
镜像
镜像-私有
镜像-公共
更多
学士帽
移动
多个窗口
music
静音
new-file
新建文件夹
换行
无换行
笔记
笔记本
笔记本-模板
章鱼脸
打开预览
组织
组织-填充
组织-轮廓
output
package
油漆桶
pass
pass-filled
pencil
人-添加
人-填充
人-关注
人-轮廓
饼图
piano
pin
pinned
已钉住-脏
play
play-circle
plug
plus
保留大小写
预览
原点-点
primitive-square
项目
脉冲
问题
引用
无线电塔
反应
record
record-keys
录音-小
重做
引用
refresh
正则表达式
remote
remote-explorer
remove
删除关闭
REPL
replace
replace-all
回复
仓库
仓库-克隆
仓库-创建
仓库-删除
仓库-强制推送
仓库-Forked
仓库-拉取
仓库-推送
仓库-同步
报告
请求更改
火箭
根文件夹
根文件夹-打开
RSS
Ruby
run
run-all
运行-上方
运行-下方
运行-错误
保存
保存全部
另存为
全屏
正常屏幕
search
搜索-保存
search-stop
模糊搜索
selection
发送
服务器
server-environment
服务器-进程
settings
settings-gear
shield
登录
注销
笑脸
snake
闪光
sort-precedence
source-control
水平分割
split-vertical
松鼠
star
星-添加
星-删除
star-empty
star-full
star-half
停止
停止-圆
数组符号
布尔符号
symbol-class
颜色符号
常量符号
构造函数符号
枚举符号
枚举成员符号
事件符号
字段符号
文件符号
文件夹符号
函数符号
接口符号
键符号
关键字符号
方法符号
杂项符号
模块符号
命名空间符号
空符号
数字符号
数值符号
对象符号
运算符符号
包符号
参数符号
属性符号
引用符号
尺子符号
代码片段符号
字符串符号
结构体符号
结构体符号
文本符号
类型参数符号
单位符号
值符号
变量符号
sync
sync-ignored
标签-添加
标签-删除
标签
target
任务列表
望远镜
终端-Bash
终端-CMD
终端-Debian
终端-Linux
终端-PowerShell
终端-tmux
终端-Ubuntu
terminal
文本大小
三条线
踩-填充
点赞
点赞-填充
tools
trash
垃圾桶
triangle-down
三角形-左
三角形-右
三角形-上
twitter
类型层次结构
类型层次结构-子
类型层次结构-父
unfold
取消按引用类型分组
解锁
取消静音
未验证
variable
已验证-填充
已验证
版本
虚拟机
虚拟机-激活
虚拟机-连接
虚拟机-轮廓
虚拟机-运行中
vr
warning
watch
whitespace
全字匹配
window
自动换行
工作区-受信任
工作区-未知
工作区-不受信任
扳手
扳手-子操作
x
闪电
放大
缩小
© . This site is unofficial and not affiliated with Microsoft.