在 VS Code 中试用

产品图标参考

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~spin)

图标贡献点

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

"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 设置 调试配置操作的图标。
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 设置 扩展视图中“管理”操作的图标。
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 同步 指示扩展已同步的图标。
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 快捷键界面中“添加”操作的图标。
keybindings-edit edit 快捷键界面中“编辑”操作的图标。
keybindings-editor-label-icon keyboard 快捷键编辑器标签的图标。
keybindings-record-keys record-keys 快捷键界面中“记录按键”操作的图标。
keybindings-sort sort-precedence 快捷键界面中“按优先级排序”开关的图标。
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 编辑器中清除单元格输出的图标。
notebook-collapsed chevron-right 在 Notebook 编辑器中标注折叠部分的图标。
notebook-delete-cell trash 在 Notebook 编辑器中删除单元格的图标。
notebook-edit pencil 在 Notebook 编辑器中编辑单元格的图标。
notebook-execute play 在 Notebook 编辑器中执行的图标。
notebook-execute-all run-all 在 Notebook 编辑器中执行所有单元格的图标。
notebook-expanded chevron-down 在 Notebook 编辑器中标注展开部分的图标。
notebook-kernel-configure settings-gear Notebook 编辑器内核配置小部件中的配置图标。
notebook-kernel-select server-environment 在 Notebook 编辑器中选择内核的配置图标。
notebook-mimetype code Notebook 编辑器中 mime 类型的图标。
notebook-move-down arrow-down 在 Notebook 编辑器中向下移动单元格的图标。
notebook-move-up arrow-up 在 Notebook 编辑器中向上移动单元格的图标。
notebook-open-as-text file-code 在文本编辑器中打开 Notebook 的图标。
notebook-render-output 预览 在差异编辑器中渲染输出的图标。
notebook-revert discard 在 Notebook 编辑器中还原的图标。
notebook-split-cell split-vertical 在 Notebook 编辑器中拆分单元格的图标。
notebook-state-error error 指示 Notebook 编辑器中错误状态的图标。
notebook-state-success check 指示 Notebook 编辑器中成功状态的图标。
notebook-stop primitive-square 在 Notebook 编辑器中停止执行的图标。
notebook-stop-edit check 在 Notebook 编辑器中停止编辑单元格的图标。
notebook-unfold unfold 在 Notebook 编辑器中展开单元格的图标。
notifications-clear close 通知中清除操作的图标。
notifications-clear-all clear-all 通知中全部清除操作的图标。
notifications-collapse chevron-down 通知中折叠操作的图标。
notifications-configure 设置 通知中配置操作的图标。
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 设置和快捷键界面中清除输入的图标。
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 设置界面中“添加”操作的图标。
settings-discard discard 设置界面中“放弃”操作的图标。
settings-edit edit 设置界面中“编辑”操作的图标。
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 设置 设置界面中“更多操作”操作的图标。
settings-remove close 设置界面中“移除”操作的图标。
settings-sync-view-icon 同步 设置同步视图的视图图标。
settings-view-bar-icon settings-gear 视图栏中的设置图标。
source-control-view-icon source-control 源代码管理视图的视图图标。
suggest-more-info chevron-right 建议小部件中“更多信息”的图标。
tasks-list-configure 设置 任务选择列表中的配置图标。
tasks-remove close 任务选择列表中“移除”的图标。
terminal-kill trash 终止终端实例的图标。
terminal-new add 创建新终端实例的图标。
terminal-rename 设置 终端快速菜单中“重命名”的图标。
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
array
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
clippy
clock
clone
close
close-all
close-dirty
cloud
cloud-download
cloud-upload
code
coffee
collapse-all
color-mode
combine
comment
comment-add
comment-discussion
comment-draft
comment-unresolved
compare-changes
compass-active
compass-dot
compass
console
copilot
copy
credit-card
dash
dashboard
database
debug-all
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-small
debug-continue
debug-coverage
debug-disconnect
debug-hint
debug-line-by-line
debug-pause
debug-rerun
debug-restart
debug-restart-frame
debug-reverse-continue
debug-stackframe
debug-stackframe-active
debug-stackframe-dot
debug-stackframe-focused
debug-start
debug-step-back
debug-step-into
debug-step-out
debug-step-over
debug-stop
desktop-download
device-camera
device-camera-video
device-desktop
device-mobile
diff
diff-added
diff-ignored
diff-modified
diff-removed
diff-renamed
discard
edit
editor-layout
ellipsis
empty-window
error-small
error
exclude
expand-all
export
extensions
eye
eye-closed
eye-unwatch
eye-watch
feedback
file
file-add
file-binary
file-code
file-directory
file-directory-create
file-media
file-pdf
file-submodule
file-symlink-directory
file-symlink-file
file-text
file-zip
files
filter-filled
filter
flame
fold
fold-down
fold-up
folder
folder-active
folder-library
folder-opened
game
gather
设置
gift
gist
gist-fork
gist-new
gist-private
gist-secret
git-branch
git-branch-create
git-branch-delete
git-commit
git-compare
git-fetch
git-fork-private
git-merge
git-pull-request
git-pull-request-abandoned
git-pull-request-closed
git-pull-request-create
git-pull-request-draft
git-pull-request-new-changes
git-pull-request-go-to-changes
github
github-action
github-alt
github-inverted
globe
go-to-file
grabber
graph
graph-left
graph-line
graph-scatter
gripper
group-by-ref-type
heart
history
home
horizontal-rule
hubot
inbox
indent
info
insert
inspect
issue-closed
issue-draft
issue-opened
issue-reopened
issues
italic
jersey
json
kebab-horizontal
kebab-vertical
key
keyboard
law
layers-active
layers-dot
layers
layout-activitybar-left
layout-activitybar-right
layout-centered
layout-menubar
layout-panel-center
layout-panel-justify
layout-panel-left
layout-panel-right
layout-panel
layout-sidebar-left
layout-sidebar-right
layout-statusbar
layout
library
light-bulb
lightbulb
lightbulb-autofix
link
link-external
list-filter
list-flat
list-ordered
list-selection
list-tree
list-unordered
live-share
加载中
location
lock-small
lock
log-in
log-out
logo-github
magnet
mail
mail-read
mail-reply
mark-github
markdown
megaphone
mention
menu
merge
mic
mic-filled
microscope
milestone
mirror
mirror-private
mirror-public
more
mortar-board
move
multiple-windows
music
mute
new-file
new-folder
newline
no-newline
note
notebook
notebook-template
octoface
open-preview
organization
organization-filled
organization-outline
output
package
paintcan
pass
pass-filled
pencil
person
person-add
person-filled
person-follow
person-outline
pie-chart
piano
pin
pinned
pinned-dirty
play
play-circle
plug
plus
preserve-case
预览
primitive-dot
primitive-square
project
pulse
question
quote
radio-tower
reactions
record
record-keys
record-small
redo
references
refresh
regex
remote
remote-explorer
remove
remove-close
repl
replace
replace-all
reply
repo
repo-clone
repo-create
repo-delete
repo-force-push
repo-forked
repo-pull
repo-push
repo-sync
report
request-changes
rocket
root-folder
root-folder-opened
rss
ruby
run
run-all
run-above
run-below
run-errors
save
save-all
save-as
screen-full
screen-normal
search
search-save
search-stop
search-fuzzy
selection
send
server
server-environment
server-process
settings
settings-gear
shield
sign-in
sign-out
smiley
snake
sparkle
sort-precedence
source-control
split-horizontal
split-vertical
squirrel
star
star-add
star-delete
star-empty
star-full
star-half
stop
stop-circle
symbol-array
symbol-boolean
symbol-class
symbol-color
符号-常量
符号-构造函数
符号-枚举
符号-枚举成员
符号-事件
符号-字段
符号-文件
符号-文件夹
符号-函数
符号-接口
符号-键
符号-关键字
符号-方法
符号-杂项
符号-模块
符号-命名空间
符号-空
符号-数字
符号-数值
符号-对象
符号-运算符
符号-包
符号-参数
符号-属性
符号-引用
符号-尺子
符号-代码片段
符号-字符串
符号-结构体
符号-结构
符号-文本
符号-类型参数
符号-单位
符号-值
符号-变量
同步
sync-ignored
标签-添加
标签-移除
标签
目标
任务列表
望远镜
终端-Bash
终端-CMD
终端-Debian
终端-Linux
终端-PowerShell
终端-Tmux
终端-Ubuntu
terminal
文本大小
三条横线
已踩
已赞
工具
trash
垃圾桶
triangle-down
左三角
右三角
上三角
twitter
类型层级
类型层级-子
类型层级-父
unfold
按引用类型取消分组
解锁
取消静音
未验证
变量
已验证(已填充)
已验证
版本
虚拟机
虚拟机-活动
虚拟机-连接
虚拟机-轮廓
虚拟机-运行中
虚拟现实 (VR)
warning
watch
whitespace
全词匹配
window
自动换行
工作区-信任
工作区-未知
工作区-不信任
扳手
扳手-子操作
x
闪电
放大
缩小