在 VS Code 中试用

产品图标参考

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

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

为了实现这一点,所有产品图标都由一个 ID 标识。图标标识符用于 UI 组件的标签中 ($(pencil)),在 API 中作为 ThemeIcon,以及在需要图标的贡献中。

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

标签中的图标

图标可以在悬停时的 Markdown 标签中、状态栏项文本中以及 快速选择项标签 API 中使用。在 Markdown 中添加图标的语法是 $(iconIdentifier)

$(alert);

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

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

要在标签内放置字面量 ${...} 文本,请使用反斜杠转义 $ 符号

\$(eye)

动画

通过在图标名称后附加 ~spin,你可以对以下图标应用旋转动画

  • sync
  • loading
  • gear
$(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 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
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
gear
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
loading
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
symbol-constant
symbol-constructor
symbol-enum
symbol-enum-member
symbol-event
symbol-field
symbol-file
symbol-folder
symbol-function
symbol-interface
symbol-key
symbol-keyword
symbol-method
symbol-misc
symbol-module
symbol-namespace
symbol-null
symbol-number
symbol-numeric
symbol-object
symbol-operator
symbol-package
symbol-parameter
symbol-property
symbol-reference
symbol-ruler
symbol-snippet
symbol-string
symbol-struct
symbol-structure
symbol-text
symbol-type-parameter
symbol-unit
symbol-value
symbol-variable
sync
sync-ignored
tag-add
tag-remove
tag
target
tasklist
telescope
terminal-bash
terminal-cmd
terminal-debian
terminal-linux
terminal-powershell
terminal-tmux
terminal-ubuntu
terminal
text-size
three-bars
thumbsdown
thumbsdown-filled
thumbsup
thumbsup-filled
tools
trash
trashcan
triangle-down
triangle-left
triangle-right
triangle-up
twitter
type-hierarchy
type-hierarchy-sub
type-hierarchy-super
unfold
ungroup-by-ref-type
unlock
unmute
unverified
variable
verified-filled
verified
versions
vm
vm-active
vm-connect
vm-outline
vm-running
vr
warning
watch
whitespace
whole-word
window
word-wrap
workspace-trusted
workspace-unknown
workspace-untrusted
wrench
wrench-subaction
x
zap
zoom-in
zoom-out