產品圖示參考
Visual Studio Code 包含一組內建圖示,這些圖示用於檢視和編輯器中,但也可以用於浮動提示、狀態列和擴充功能。這些圖示是產品圖示,相對於檔案圖示,檔案圖示用於整個 UI 中檔案名稱的旁邊。
VS Code 隨附的產品圖示包含在 Codicon 圖示字型中,並構成預設產品圖示佈景主題。擴充功能可以提供新的產品圖示佈景主題,以重新定義這些圖示並為 VS Code 提供新的外觀。
為了允許這樣做,所有產品圖示都由 ID 識別。圖示識別碼是在標籤 ($(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
的所有位置使用圖示 ID (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 編輯器中儲存格輸出的圖示。 | |
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 | 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 | 遠端總管檢視中的意見反應圖示。 | ||
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-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-stop | |
模糊搜尋 | |
selection | |
傳送 | |
伺服器 | |
server-environment | |
伺服器進程 | |
settings | |
settings-gear | |
shield | |
登入 | |
登出 | |
表情符號 | |
蛇 | |
閃爍 | |
sort-precedence | |
source-control | |
水平分割 | |
split-vertical | |
松鼠 | |
star | |
加入星號 | |
刪除星號 | |
star-empty | |
star-full | |
star-half | |
停止 | |
停止圓圈 | |
陣列符號 | |
布林符號 | |
symbol-class | |
顏色符號 | |
常數符號 | |
建構子符號 | |
列舉符號 | |
列舉成員符號 | |
事件符號 | |
欄位符號 | |
檔案符號 | |
資料夾符號 | |
函式符號 | |
介面符號 | |
鍵符號 | |
關鍵字符號 | |
方法符號 | |
其他符號 | |
模組符號 | |
命名空間符號 | |
空值符號 | |
數字符號 | |
數值符號 | |
物件符號 | |
運算子符號 | |
套件符號 | |
參數符號 | |
屬性符號 | |
參考符號 | |
標尺符號 | |
程式碼片段符號 | |
字串符號 | |
結構符號 | |
結構符號 | |
文字符號 | |
類型參數符號 | |
單位符號 | |
值符號 | |
變數符號 | |
sync | |
sync-ignored | |
加入標籤 | |
移除標籤 | |
標籤 | |
目標 | |
任務列表 | |
望遠鏡 | |
終端機-Bash | |
終端機-Cmd | |
終端機-Debian | |
終端機-Linux | |
終端機-PowerShell | |
終端機-tmux | |
終端機-Ubuntu | |
terminal | |
文字大小 | |
三條橫線 | |
倒讚 | |
實心倒讚 | |
讚 | |
實心讚 | |
工具 | |
trash | |
垃圾桶 | |
triangle-down | |
向左三角形 | |
向右三角形 | |
向上三角形 | |
類型階層 | |
子類型階層 | |
父類型階層 | |
unfold | |
依參考類型取消分組 | |
解鎖 | |
取消靜音 | |
未驗證 | |
變數 | |
已驗證 | |
已驗證 | |
版本 | |
虛擬機器 | |
作用中虛擬機器 | |
連線虛擬機器 | |
虛擬機器外框 | |
執行中虛擬機器 | |
虛擬實境 | |
warning | |
watch | |
whitespace | |
全字 | |
window | |
自動換行 | |
信任的工作區 | |
未知的工作區 | |
不信任的工作區 | |
板手 | |
板手子動作 | |
x | |
閃電 | |
放大 | |
縮小 |