產品圖示參考
Visual Studio Code 包含一套內建圖示,用於檢視區與編輯器中,同時也可用於懸停提示 (hovers)、狀態列以及擴充功能。這些圖示稱為產品圖示 (product icons),與用於 UI 各處檔案名稱旁邊的檔案圖示 (file icons) 相區別。
隨 VS Code 發布的產品圖示包含在 Codicon 圖示字型中,並構成了預設的產品圖示佈景主題。擴充功能可以提供新的 產品圖示佈景主題 來重新定義這些圖示,賦予 VS Code 新的外觀。
為了實現此功能,所有產品圖示皆透過 ID 進行識別。圖示識別碼用於 UI 元件標籤中 ($(pencil))、API 中的 ThemeIcon,以及需要圖示的貢獻點 (contributions) 中。
將圖示識別碼與實際的圖示字型字形建立關聯的工作是在產品圖示佈景主題中完成的。
標籤中的圖示
圖示可用於懸停提示中的 Markdown 標籤、StatusBarItem 文字以及 QuickPickItem 標籤 API。在 Markdown 中加入圖示的語法為 $(iconIdentifier)
$(alert);
您也可以嵌入文字並使用多個圖示
$(eye) $(heart) $(mark-github) GitHub
若要在標籤內放置字面上的 ${...} 文字,請使用反斜線跳脫 $ 字元
\$(eye)
動畫
您可以透過在圖示名稱後加上 ~spin,為下列圖示套用旋轉動畫
syncloadinggear
$(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 | description |
|---|---|---|---|
| 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 | 錯誤 | 筆記本編輯器中指示錯誤狀態的圖示。 | |
| 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 | 遠端總管檢視中的意見反應圖示。 | ||
| 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 | |
| 錯誤 | |
| 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-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 | |
| type-hierarchy | |
| type-hierarchy-sub | |
| type-hierarchy-super | |
| unfold | |
| ungroup-by-ref-type | |
| unlock | |
| unmute | |
| unverified | |
| 變數 | |
| 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 |