From 83d92dde35c5ccdd7a7ac08005f96f15e310eab6 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Wed, 30 Jul 2025 23:17:13 +0200 Subject: [PATCH] build: Update VSCode Icons font --- .../source/content/main_menu_items.cpp | 6 +- .../source/content/settings_entries.cpp | 2 +- .../source/content/views/view_about.cpp | 2 +- .../source/content/views/view_hex_editor.cpp | 8 +- .../source/content/views/view_diff.cpp | 2 +- plugins/fonts/include/fonts/vscode_icons.hpp | 1048 ++++++++--------- plugins/fonts/romfs/fonts/codicons.ttf | Bin 77120 -> 89044 bytes .../source/content/views/view_hashes.cpp | 2 +- plugins/ui/source/ui/pattern_drawer.cpp | 6 +- .../content/pl_visualizers/3d_model.cpp | 2 +- 10 files changed, 509 insertions(+), 569 deletions(-) diff --git a/plugins/builtin/source/content/main_menu_items.cpp b/plugins/builtin/source/content/main_menu_items.cpp index 7e1458021..bea1b7292 100644 --- a/plugins/builtin/source/content/main_menu_items.cpp +++ b/plugins/builtin/source/content/main_menu_items.cpp @@ -586,7 +586,7 @@ namespace hex::plugin::builtin { bool shiftPressed = ImGui::GetIO().KeyShift; for (auto &[name, path] : LayoutManager::getLayouts()) { - if (menu::menuItem(hex::format("{}{}", name, shiftPressed ? " " ICON_VS_X : "").c_str(), Shortcut::None, false, ImHexApi::Provider::isValid())) { + if (menu::menuItem(hex::format("{}{}", name, shiftPressed ? " " ICON_VS_CHROME_CLOSE : "").c_str(), Shortcut::None, false, ImHexApi::Provider::isValid())) { if (shiftPressed) { LayoutManager::removeLayout(name); break; @@ -605,7 +605,7 @@ namespace hex::plugin::builtin { ContentRegistry::Interface::addMenuItemSeparator({ "hex.builtin.menu.workspace" }, 3000); - ContentRegistry::Interface::addMenuItem({ "hex.builtin.menu.workspace", "hex.builtin.menu.workspace.create" }, ICON_VS_REPO_CREATE, 3100, Shortcut::None, [] { + ContentRegistry::Interface::addMenuItem({ "hex.builtin.menu.workspace", "hex.builtin.menu.workspace.create" }, ICON_VS_ADD, 3100, Shortcut::None, [] { ui::PopupTextInput::open("hex.builtin.popup.create_workspace.title", "hex.builtin.popup.create_workspace.desc", [](const std::string &name) { WorkspaceManager::createWorkspace(name); }); @@ -619,7 +619,7 @@ namespace hex::plugin::builtin { const auto &[name, workspace] = *it; bool canRemove = shiftPressed && !workspace.builtin; - if (menu::menuItem(hex::format("{}{}", name, canRemove ? " " ICON_VS_X : "").c_str(), Shortcut::None, it == WorkspaceManager::getCurrentWorkspace(), ImHexApi::Provider::isValid())) { + if (menu::menuItem(hex::format("{}{}", name, canRemove ? " " ICON_VS_CHROME_CLOSE : "").c_str(), Shortcut::None, it == WorkspaceManager::getCurrentWorkspace(), ImHexApi::Provider::isValid())) { if (canRemove) { WorkspaceManager::removeWorkspace(name); break; diff --git a/plugins/builtin/source/content/settings_entries.cpp b/plugins/builtin/source/content/settings_entries.cpp index 8225f1244..2d91e277d 100644 --- a/plugins/builtin/source/content/settings_entries.cpp +++ b/plugins/builtin/source/content/settings_entries.cpp @@ -134,7 +134,7 @@ namespace hex::plugin::builtin { } ImGuiExt::InfoTooltip("hex.builtin.setting.folders.add_folder"_lang); - if (ImGuiExt::IconButton(ICON_VS_REMOVE_CLOSE, ImGui::GetStyleColorVec4(ImGuiCol_Text), ImVec2(30, 30))) { + if (ImGuiExt::IconButton(ICON_VS_REMOVE, ImGui::GetStyleColorVec4(ImGuiCol_Text), ImVec2(30, 30))) { if (!m_paths.empty()) { m_paths.erase(std::next(m_paths.begin(), m_itemIndex)); ImHexApi::System::setAdditionalFolderPaths(m_paths); diff --git a/plugins/builtin/source/content/views/view_about.cpp b/plugins/builtin/source/content/views/view_about.cpp index c7e8b87d1..3d8da0b9d 100644 --- a/plugins/builtin/source/content/views/view_about.cpp +++ b/plugins/builtin/source/content/views/view_about.cpp @@ -240,7 +240,7 @@ namespace hex::plugin::builtin { ImGui::SameLine(); // Draw a clickable link to the GitHub repository - if (ImGuiExt::Hyperlink(ICON_VS_LOGO_GITHUB " " "WerWolv/ImHex")) + if (ImGuiExt::Hyperlink(ICON_VS_GITHUB " " "WerWolv/ImHex")) hex::openWebpage("https://github.com/WerWolv/ImHex"); } diff --git a/plugins/builtin/source/content/views/view_hex_editor.cpp b/plugins/builtin/source/content/views/view_hex_editor.cpp index e1fcff5f7..cc5ce8385 100644 --- a/plugins/builtin/source/content/views/view_hex_editor.cpp +++ b/plugins/builtin/source/content/views/view_hex_editor.cpp @@ -1278,7 +1278,7 @@ namespace hex::plugin::builtin { ContentRegistry::Interface::addMenuItemSubMenu({ "hex.builtin.menu.edit", "hex.builtin.view.hex_editor.menu.edit.copy_as" }, ICON_VS_PREVIEW, 1190, []{}, ImHexApi::HexEditor::isSelectionValid, this); /* Copy As */ - ContentRegistry::Interface::addMenuItem({ "hex.builtin.menu.edit", "hex.builtin.view.hex_editor.menu.edit.copy_as", "hex.builtin.view.hex_editor.copy.ascii" }, ICON_VS_SYMBOL_TEXT, 1200, + ContentRegistry::Interface::addMenuItem({ "hex.builtin.menu.edit", "hex.builtin.view.hex_editor.menu.edit.copy_as", "hex.builtin.view.hex_editor.copy.ascii" }, ICON_VS_SYMBOL_KEY, 1200, CurrentView + ALT + Keys::C, [] { auto selection = ImHexApi::HexEditor::getSelection(); @@ -1375,7 +1375,7 @@ namespace hex::plugin::builtin { this); /* Paste... > Paste all as string */ - ContentRegistry::Interface::addMenuItem({ "hex.builtin.menu.edit", "hex.builtin.view.hex_editor.menu.edit.paste_as", "hex.builtin.view.hex_editor.menu.edit.paste_all_string" }, ICON_VS_SYMBOL_TEXT, 1510, + ContentRegistry::Interface::addMenuItem({ "hex.builtin.menu.edit", "hex.builtin.view.hex_editor.menu.edit.paste_as", "hex.builtin.view.hex_editor.menu.edit.paste_all_string" }, ICON_VS_SYMBOL_KEY, 1510, Shortcut::None, [] { pasteBytes(ImHexApi::HexEditor::getSelection().value_or( ImHexApi::HexEditor::ProviderRegion(Region { 0, 0 }, ImHexApi::Provider::get())), false, true); @@ -1384,7 +1384,7 @@ namespace hex::plugin::builtin { this); /* Select */ - ContentRegistry::Interface::addMenuItem({ "hex.builtin.menu.edit", "hex.builtin.view.hex_editor.menu.edit.select" }, ICON_VS_SELECTION, 1525, + ContentRegistry::Interface::addMenuItem({ "hex.builtin.menu.edit", "hex.builtin.view.hex_editor.menu.edit.select" }, ICON_VS_LIST_SELECTION, 1525, CTRLCMD + SHIFT + Keys::A, [this] { auto selection = ImHexApi::HexEditor::getSelection().value_or(ImHexApi::HexEditor::ProviderRegion{ { 0, 1 }, nullptr }); @@ -1454,7 +1454,7 @@ namespace hex::plugin::builtin { this); /* Toggle Overwrite/Insert mode */ - ContentRegistry::Interface::addMenuItem({ "hex.builtin.menu.edit", "hex.builtin.view.hex_editor.menu.edit.insert_mode" }, ICON_VS_PENCIL, 1820, Shortcut::None, + ContentRegistry::Interface::addMenuItem({ "hex.builtin.menu.edit", "hex.builtin.view.hex_editor.menu.edit.insert_mode" }, ICON_VS_EDIT, 1820, Shortcut::None, [this] { if (m_hexEditor.getMode() == ui::HexEditor::Mode::Insert) m_hexEditor.setMode(ui::HexEditor::Mode::Overwrite); diff --git a/plugins/diffing/source/content/views/view_diff.cpp b/plugins/diffing/source/content/views/view_diff.cpp index bfddf8bb8..e097f2604 100644 --- a/plugins/diffing/source/content/views/view_diff.cpp +++ b/plugins/diffing/source/content/views/view_diff.cpp @@ -13,7 +13,7 @@ namespace hex::plugin::diffing { using DifferenceType = ContentRegistry::Diffing::DifferenceType; - ViewDiff::ViewDiff() : View::Window("hex.diffing.view.diff.name", ICON_VS_DIFF_SIDEBYSIDE) { + ViewDiff::ViewDiff() : View::Window("hex.diffing.view.diff.name", ICON_VS_DIFF) { // Clear the selected diff providers when a provider is closed EventProviderClosed::subscribe(this, [this](prv::Provider *) { this->reset(); diff --git a/plugins/fonts/include/fonts/vscode_icons.hpp b/plugins/fonts/include/fonts/vscode_icons.hpp index e5abde621..2be4a46db 100644 --- a/plugins/fonts/include/fonts/vscode_icons.hpp +++ b/plugins/fonts/include/fonts/vscode_icons.hpp @@ -1,558 +1,498 @@ -// Generated by https://github.com/juliettef/IconFontCppHeaders script GenerateIconFontCppHeaders.py for languages C and C++ -// from https://raw.githubusercontent.com/microsoft/vscode-codicons/main/dist/codicon.css -// for use with https://github.com/microsoft/vscode-codicons/blob/main/dist/codicon.ttf #pragma once -#define FONT_ICON_FILE_NAME_VS "codicon.ttf" +#define FONT_ICON_FILE_NAME_VS "codicons.ttf" #define ICON_MIN_VS 0xea60 -#define ICON_MAX_16_VS 0xec25 -#define ICON_MAX_VS 0xec25 -#define ICON_VS_ADD "\xee\xa9\xa0" // U+ea60 -#define ICON_VS_PLUS "\xee\xa9\xa0" // U+ea60 -#define ICON_VS_GIST_NEW "\xee\xa9\xa0" // U+ea60 -#define ICON_VS_REPO_CREATE "\xee\xa9\xa0" // U+ea60 -#define ICON_VS_LIGHTBULB "\xee\xa9\xa1" // U+ea61 -#define ICON_VS_LIGHT_BULB "\xee\xa9\xa1" // U+ea61 -#define ICON_VS_REPO "\xee\xa9\xa2" // U+ea62 -#define ICON_VS_REPO_DELETE "\xee\xa9\xa2" // U+ea62 -#define ICON_VS_GIST_FORK "\xee\xa9\xa3" // U+ea63 -#define ICON_VS_REPO_FORKED "\xee\xa9\xa3" // U+ea63 -#define ICON_VS_GIT_PULL_REQUEST "\xee\xa9\xa4" // U+ea64 -#define ICON_VS_GIT_PULL_REQUEST_ABANDONED "\xee\xa9\xa4" // U+ea64 -#define ICON_VS_RECORD_KEYS "\xee\xa9\xa5" // U+ea65 -#define ICON_VS_KEYBOARD "\xee\xa9\xa5" // U+ea65 -#define ICON_VS_TAG "\xee\xa9\xa6" // U+ea66 -#define ICON_VS_GIT_PULL_REQUEST_LABEL "\xee\xa9\xa6" // U+ea66 -#define ICON_VS_TAG_ADD "\xee\xa9\xa6" // U+ea66 -#define ICON_VS_TAG_REMOVE "\xee\xa9\xa6" // U+ea66 -#define ICON_VS_PERSON "\xee\xa9\xa7" // U+ea67 -#define ICON_VS_PERSON_FOLLOW "\xee\xa9\xa7" // U+ea67 -#define ICON_VS_PERSON_OUTLINE "\xee\xa9\xa7" // U+ea67 -#define ICON_VS_PERSON_FILLED "\xee\xa9\xa7" // U+ea67 -#define ICON_VS_GIT_BRANCH "\xee\xa9\xa8" // U+ea68 -#define ICON_VS_GIT_BRANCH_CREATE "\xee\xa9\xa8" // U+ea68 -#define ICON_VS_GIT_BRANCH_DELETE "\xee\xa9\xa8" // U+ea68 -#define ICON_VS_SOURCE_CONTROL "\xee\xa9\xa8" // U+ea68 -#define ICON_VS_MIRROR "\xee\xa9\xa9" // U+ea69 -#define ICON_VS_MIRROR_PUBLIC "\xee\xa9\xa9" // U+ea69 -#define ICON_VS_STAR "\xee\xa9\xaa" // U+ea6a -#define ICON_VS_STAR_ADD "\xee\xa9\xaa" // U+ea6a -#define ICON_VS_STAR_DELETE "\xee\xa9\xaa" // U+ea6a -#define ICON_VS_STAR_EMPTY "\xee\xa9\xaa" // U+ea6a -#define ICON_VS_COMMENT "\xee\xa9\xab" // U+ea6b -#define ICON_VS_COMMENT_ADD "\xee\xa9\xab" // U+ea6b -#define ICON_VS_ALERT "\xee\xa9\xac" // U+ea6c -#define ICON_VS_WARNING "\xee\xa9\xac" // U+ea6c -#define ICON_VS_SEARCH "\xee\xa9\xad" // U+ea6d -#define ICON_VS_SEARCH_SAVE "\xee\xa9\xad" // U+ea6d -#define ICON_VS_LOG_OUT "\xee\xa9\xae" // U+ea6e -#define ICON_VS_SIGN_OUT "\xee\xa9\xae" // U+ea6e -#define ICON_VS_LOG_IN "\xee\xa9\xaf" // U+ea6f -#define ICON_VS_SIGN_IN "\xee\xa9\xaf" // U+ea6f -#define ICON_VS_EYE "\xee\xa9\xb0" // U+ea70 -#define ICON_VS_EYE_UNWATCH "\xee\xa9\xb0" // U+ea70 -#define ICON_VS_EYE_WATCH "\xee\xa9\xb0" // U+ea70 -#define ICON_VS_CIRCLE_FILLED "\xee\xa9\xb1" // U+ea71 -#define ICON_VS_PRIMITIVE_DOT "\xee\xa9\xb1" // U+ea71 -#define ICON_VS_CLOSE_DIRTY "\xee\xa9\xb1" // U+ea71 -#define ICON_VS_DEBUG_BREAKPOINT "\xee\xa9\xb1" // U+ea71 -#define ICON_VS_DEBUG_BREAKPOINT_DISABLED "\xee\xa9\xb1" // U+ea71 -#define ICON_VS_DEBUG_HINT "\xee\xa9\xb1" // U+ea71 -#define ICON_VS_TERMINAL_DECORATION_SUCCESS "\xee\xa9\xb1" // U+ea71 -#define ICON_VS_PRIMITIVE_SQUARE "\xee\xa9\xb2" // U+ea72 -#define ICON_VS_EDIT "\xee\xa9\xb3" // U+ea73 -#define ICON_VS_PENCIL "\xee\xa9\xb3" // U+ea73 -#define ICON_VS_INFO "\xee\xa9\xb4" // U+ea74 -#define ICON_VS_ISSUE_OPENED "\xee\xa9\xb4" // U+ea74 -#define ICON_VS_GIST_PRIVATE "\xee\xa9\xb5" // U+ea75 -#define ICON_VS_GIT_FORK_PRIVATE "\xee\xa9\xb5" // U+ea75 -#define ICON_VS_LOCK "\xee\xa9\xb5" // U+ea75 -#define ICON_VS_MIRROR_PRIVATE "\xee\xa9\xb5" // U+ea75 -#define ICON_VS_CLOSE "\xee\xa9\xb6" // U+ea76 -#define ICON_VS_REMOVE_CLOSE "\xee\xa9\xb6" // U+ea76 -#define ICON_VS_X "\xee\xa9\xb6" // U+ea76 -#define ICON_VS_REPO_SYNC "\xee\xa9\xb7" // U+ea77 -#define ICON_VS_SYNC "\xee\xa9\xb7" // U+ea77 -#define ICON_VS_CLONE "\xee\xa9\xb8" // U+ea78 -#define ICON_VS_DESKTOP_DOWNLOAD "\xee\xa9\xb8" // U+ea78 -#define ICON_VS_BEAKER "\xee\xa9\xb9" // U+ea79 -#define ICON_VS_MICROSCOPE "\xee\xa9\xb9" // U+ea79 -#define ICON_VS_VM "\xee\xa9\xba" // U+ea7a -#define ICON_VS_DEVICE_DESKTOP "\xee\xa9\xba" // U+ea7a -#define ICON_VS_FILE "\xee\xa9\xbb" // U+ea7b -#define ICON_VS_FILE_TEXT "\xee\xa9\xbb" // U+ea7b -#define ICON_VS_MORE "\xee\xa9\xbc" // U+ea7c -#define ICON_VS_ELLIPSIS "\xee\xa9\xbc" // U+ea7c -#define ICON_VS_KEBAB_HORIZONTAL "\xee\xa9\xbc" // U+ea7c -#define ICON_VS_MAIL_REPLY "\xee\xa9\xbd" // U+ea7d -#define ICON_VS_REPLY "\xee\xa9\xbd" // U+ea7d -#define ICON_VS_ORGANIZATION "\xee\xa9\xbe" // U+ea7e -#define ICON_VS_ORGANIZATION_FILLED "\xee\xa9\xbe" // U+ea7e -#define ICON_VS_ORGANIZATION_OUTLINE "\xee\xa9\xbe" // U+ea7e -#define ICON_VS_NEW_FILE "\xee\xa9\xbf" // U+ea7f -#define ICON_VS_FILE_ADD "\xee\xa9\xbf" // U+ea7f -#define ICON_VS_NEW_FOLDER "\xee\xaa\x80" // U+ea80 -#define ICON_VS_FILE_DIRECTORY_CREATE "\xee\xaa\x80" // U+ea80 -#define ICON_VS_TRASH "\xee\xaa\x81" // U+ea81 -#define ICON_VS_TRASHCAN "\xee\xaa\x81" // U+ea81 -#define ICON_VS_HISTORY "\xee\xaa\x82" // U+ea82 -#define ICON_VS_CLOCK "\xee\xaa\x82" // U+ea82 -#define ICON_VS_FOLDER "\xee\xaa\x83" // U+ea83 -#define ICON_VS_FILE_DIRECTORY "\xee\xaa\x83" // U+ea83 -#define ICON_VS_SYMBOL_FOLDER "\xee\xaa\x83" // U+ea83 -#define ICON_VS_LOGO_GITHUB "\xee\xaa\x84" // U+ea84 -#define ICON_VS_MARK_GITHUB "\xee\xaa\x84" // U+ea84 -#define ICON_VS_GITHUB "\xee\xaa\x84" // U+ea84 -#define ICON_VS_TERMINAL "\xee\xaa\x85" // U+ea85 -#define ICON_VS_CONSOLE "\xee\xaa\x85" // U+ea85 -#define ICON_VS_REPL "\xee\xaa\x85" // U+ea85 -#define ICON_VS_ZAP "\xee\xaa\x86" // U+ea86 -#define ICON_VS_SYMBOL_EVENT "\xee\xaa\x86" // U+ea86 -#define ICON_VS_ERROR "\xee\xaa\x87" // U+ea87 -#define ICON_VS_STOP "\xee\xaa\x87" // U+ea87 -#define ICON_VS_VARIABLE "\xee\xaa\x88" // U+ea88 -#define ICON_VS_SYMBOL_VARIABLE "\xee\xaa\x88" // U+ea88 -#define ICON_VS_ARRAY "\xee\xaa\x8a" // U+ea8a -#define ICON_VS_SYMBOL_ARRAY "\xee\xaa\x8a" // U+ea8a -#define ICON_VS_SYMBOL_MODULE "\xee\xaa\x8b" // U+ea8b -#define ICON_VS_SYMBOL_PACKAGE "\xee\xaa\x8b" // U+ea8b -#define ICON_VS_SYMBOL_NAMESPACE "\xee\xaa\x8b" // U+ea8b -#define ICON_VS_SYMBOL_OBJECT "\xee\xaa\x8b" // U+ea8b -#define ICON_VS_SYMBOL_METHOD "\xee\xaa\x8c" // U+ea8c -#define ICON_VS_SYMBOL_FUNCTION "\xee\xaa\x8c" // U+ea8c -#define ICON_VS_SYMBOL_CONSTRUCTOR "\xee\xaa\x8c" // U+ea8c -#define ICON_VS_SYMBOL_BOOLEAN "\xee\xaa\x8f" // U+ea8f -#define ICON_VS_SYMBOL_NULL "\xee\xaa\x8f" // U+ea8f -#define ICON_VS_SYMBOL_NUMERIC "\xee\xaa\x90" // U+ea90 -#define ICON_VS_SYMBOL_NUMBER "\xee\xaa\x90" // U+ea90 -#define ICON_VS_SYMBOL_STRUCTURE "\xee\xaa\x91" // U+ea91 -#define ICON_VS_SYMBOL_STRUCT "\xee\xaa\x91" // U+ea91 -#define ICON_VS_SYMBOL_PARAMETER "\xee\xaa\x92" // U+ea92 -#define ICON_VS_SYMBOL_TYPE_PARAMETER "\xee\xaa\x92" // U+ea92 -#define ICON_VS_SYMBOL_KEY "\xee\xaa\x93" // U+ea93 -#define ICON_VS_SYMBOL_TEXT "\xee\xaa\x93" // U+ea93 -#define ICON_VS_SYMBOL_REFERENCE "\xee\xaa\x94" // U+ea94 -#define ICON_VS_GO_TO_FILE "\xee\xaa\x94" // U+ea94 -#define ICON_VS_SYMBOL_ENUM "\xee\xaa\x95" // U+ea95 -#define ICON_VS_SYMBOL_VALUE "\xee\xaa\x95" // U+ea95 -#define ICON_VS_SYMBOL_RULER "\xee\xaa\x96" // U+ea96 -#define ICON_VS_SYMBOL_UNIT "\xee\xaa\x96" // U+ea96 -#define ICON_VS_ACTIVATE_BREAKPOINTS "\xee\xaa\x97" // U+ea97 -#define ICON_VS_ARCHIVE "\xee\xaa\x98" // U+ea98 -#define ICON_VS_ARROW_BOTH "\xee\xaa\x99" // U+ea99 -#define ICON_VS_ARROW_DOWN "\xee\xaa\x9a" // U+ea9a -#define ICON_VS_ARROW_LEFT "\xee\xaa\x9b" // U+ea9b -#define ICON_VS_ARROW_RIGHT "\xee\xaa\x9c" // U+ea9c -#define ICON_VS_ARROW_SMALL_DOWN "\xee\xaa\x9d" // U+ea9d -#define ICON_VS_ARROW_SMALL_LEFT "\xee\xaa\x9e" // U+ea9e -#define ICON_VS_ARROW_SMALL_RIGHT "\xee\xaa\x9f" // U+ea9f -#define ICON_VS_ARROW_SMALL_UP "\xee\xaa\xa0" // U+eaa0 -#define ICON_VS_ARROW_UP "\xee\xaa\xa1" // U+eaa1 -#define ICON_VS_BELL "\xee\xaa\xa2" // U+eaa2 -#define ICON_VS_BOLD "\xee\xaa\xa3" // U+eaa3 -#define ICON_VS_BOOK "\xee\xaa\xa4" // U+eaa4 -#define ICON_VS_BOOKMARK "\xee\xaa\xa5" // U+eaa5 -#define ICON_VS_DEBUG_BREAKPOINT_CONDITIONAL_UNVERIFIED "\xee\xaa\xa6" // U+eaa6 -#define ICON_VS_DEBUG_BREAKPOINT_CONDITIONAL "\xee\xaa\xa7" // U+eaa7 -#define ICON_VS_DEBUG_BREAKPOINT_CONDITIONAL_DISABLED "\xee\xaa\xa7" // U+eaa7 -#define ICON_VS_DEBUG_BREAKPOINT_DATA_UNVERIFIED "\xee\xaa\xa8" // U+eaa8 -#define ICON_VS_DEBUG_BREAKPOINT_DATA "\xee\xaa\xa9" // U+eaa9 -#define ICON_VS_DEBUG_BREAKPOINT_DATA_DISABLED "\xee\xaa\xa9" // U+eaa9 -#define ICON_VS_DEBUG_BREAKPOINT_LOG_UNVERIFIED "\xee\xaa\xaa" // U+eaaa -#define ICON_VS_DEBUG_BREAKPOINT_LOG "\xee\xaa\xab" // U+eaab -#define ICON_VS_DEBUG_BREAKPOINT_LOG_DISABLED "\xee\xaa\xab" // U+eaab -#define ICON_VS_BRIEFCASE "\xee\xaa\xac" // U+eaac -#define ICON_VS_BROADCAST "\xee\xaa\xad" // U+eaad -#define ICON_VS_BROWSER "\xee\xaa\xae" // U+eaae -#define ICON_VS_BUG "\xee\xaa\xaf" // U+eaaf -#define ICON_VS_CALENDAR "\xee\xaa\xb0" // U+eab0 -#define ICON_VS_CASE_SENSITIVE "\xee\xaa\xb1" // U+eab1 -#define ICON_VS_CHECK "\xee\xaa\xb2" // U+eab2 -#define ICON_VS_CHECKLIST "\xee\xaa\xb3" // U+eab3 -#define ICON_VS_CHEVRON_DOWN "\xee\xaa\xb4" // U+eab4 -#define ICON_VS_CHEVRON_LEFT "\xee\xaa\xb5" // U+eab5 -#define ICON_VS_CHEVRON_RIGHT "\xee\xaa\xb6" // U+eab6 -#define ICON_VS_CHEVRON_UP "\xee\xaa\xb7" // U+eab7 -#define ICON_VS_CHROME_CLOSE "\xee\xaa\xb8" // U+eab8 -#define ICON_VS_CHROME_MAXIMIZE "\xee\xaa\xb9" // U+eab9 -#define ICON_VS_CHROME_MINIMIZE "\xee\xaa\xba" // U+eaba -#define ICON_VS_CHROME_RESTORE "\xee\xaa\xbb" // U+eabb -#define ICON_VS_CIRCLE_OUTLINE "\xee\xaa\xbc" // U+eabc -#define ICON_VS_CIRCLE "\xee\xaa\xbc" // U+eabc -#define ICON_VS_DEBUG_BREAKPOINT_UNVERIFIED "\xee\xaa\xbc" // U+eabc -#define ICON_VS_TERMINAL_DECORATION_INCOMPLETE "\xee\xaa\xbc" // U+eabc -#define ICON_VS_CIRCLE_SLASH "\xee\xaa\xbd" // U+eabd -#define ICON_VS_CIRCUIT_BOARD "\xee\xaa\xbe" // U+eabe -#define ICON_VS_CLEAR_ALL "\xee\xaa\xbf" // U+eabf -#define ICON_VS_CLIPPY "\xee\xab\x80" // U+eac0 -#define ICON_VS_CLOSE_ALL "\xee\xab\x81" // U+eac1 -#define ICON_VS_CLOUD_DOWNLOAD "\xee\xab\x82" // U+eac2 -#define ICON_VS_CLOUD_UPLOAD "\xee\xab\x83" // U+eac3 -#define ICON_VS_CODE "\xee\xab\x84" // U+eac4 -#define ICON_VS_COLLAPSE_ALL "\xee\xab\x85" // U+eac5 -#define ICON_VS_COLOR_MODE "\xee\xab\x86" // U+eac6 -#define ICON_VS_COMMENT_DISCUSSION "\xee\xab\x87" // U+eac7 -#define ICON_VS_CREDIT_CARD "\xee\xab\x89" // U+eac9 -#define ICON_VS_DASH "\xee\xab\x8c" // U+eacc -#define ICON_VS_DASHBOARD "\xee\xab\x8d" // U+eacd -#define ICON_VS_DATABASE "\xee\xab\x8e" // U+eace -#define ICON_VS_DEBUG_CONTINUE "\xee\xab\x8f" // U+eacf -#define ICON_VS_DEBUG_DISCONNECT "\xee\xab\x90" // U+ead0 -#define ICON_VS_DEBUG_PAUSE "\xee\xab\x91" // U+ead1 -#define ICON_VS_DEBUG_RESTART "\xee\xab\x92" // U+ead2 -#define ICON_VS_DEBUG_START "\xee\xab\x93" // U+ead3 -#define ICON_VS_DEBUG_STEP_INTO "\xee\xab\x94" // U+ead4 -#define ICON_VS_DEBUG_STEP_OUT "\xee\xab\x95" // U+ead5 -#define ICON_VS_DEBUG_STEP_OVER "\xee\xab\x96" // U+ead6 -#define ICON_VS_DEBUG_STOP "\xee\xab\x97" // U+ead7 -#define ICON_VS_DEBUG "\xee\xab\x98" // U+ead8 -#define ICON_VS_DEVICE_CAMERA_VIDEO "\xee\xab\x99" // U+ead9 -#define ICON_VS_DEVICE_CAMERA "\xee\xab\x9a" // U+eada -#define ICON_VS_DEVICE_MOBILE "\xee\xab\x9b" // U+eadb -#define ICON_VS_DIFF_ADDED "\xee\xab\x9c" // U+eadc -#define ICON_VS_DIFF_IGNORED "\xee\xab\x9d" // U+eadd -#define ICON_VS_DIFF_MODIFIED "\xee\xab\x9e" // U+eade -#define ICON_VS_DIFF_REMOVED "\xee\xab\x9f" // U+eadf -#define ICON_VS_DIFF_RENAMED "\xee\xab\xa0" // U+eae0 -#define ICON_VS_DIFF "\xee\xab\xa1" // U+eae1 -#define ICON_VS_DIFF_SIDEBYSIDE "\xee\xab\xa1" // U+eae1 -#define ICON_VS_DISCARD "\xee\xab\xa2" // U+eae2 -#define ICON_VS_EDITOR_LAYOUT "\xee\xab\xa3" // U+eae3 -#define ICON_VS_EMPTY_WINDOW "\xee\xab\xa4" // U+eae4 -#define ICON_VS_EXCLUDE "\xee\xab\xa5" // U+eae5 -#define ICON_VS_EXTENSIONS "\xee\xab\xa6" // U+eae6 -#define ICON_VS_EYE_CLOSED "\xee\xab\xa7" // U+eae7 -#define ICON_VS_FILE_BINARY "\xee\xab\xa8" // U+eae8 -#define ICON_VS_FILE_CODE "\xee\xab\xa9" // U+eae9 -#define ICON_VS_FILE_MEDIA "\xee\xab\xaa" // U+eaea -#define ICON_VS_FILE_PDF "\xee\xab\xab" // U+eaeb -#define ICON_VS_FILE_SUBMODULE "\xee\xab\xac" // U+eaec -#define ICON_VS_FILE_SYMLINK_DIRECTORY "\xee\xab\xad" // U+eaed -#define ICON_VS_FILE_SYMLINK_FILE "\xee\xab\xae" // U+eaee -#define ICON_VS_FILE_ZIP "\xee\xab\xaf" // U+eaef -#define ICON_VS_FILES "\xee\xab\xb0" // U+eaf0 -#define ICON_VS_FILTER "\xee\xab\xb1" // U+eaf1 -#define ICON_VS_FLAME "\xee\xab\xb2" // U+eaf2 -#define ICON_VS_FOLD_DOWN "\xee\xab\xb3" // U+eaf3 -#define ICON_VS_FOLD_UP "\xee\xab\xb4" // U+eaf4 -#define ICON_VS_FOLD "\xee\xab\xb5" // U+eaf5 -#define ICON_VS_FOLDER_ACTIVE "\xee\xab\xb6" // U+eaf6 -#define ICON_VS_FOLDER_OPENED "\xee\xab\xb7" // U+eaf7 -#define ICON_VS_GEAR "\xee\xab\xb8" // U+eaf8 -#define ICON_VS_GIFT "\xee\xab\xb9" // U+eaf9 -#define ICON_VS_GIST_SECRET "\xee\xab\xba" // U+eafa -#define ICON_VS_GIST "\xee\xab\xbb" // U+eafb -#define ICON_VS_GIT_COMMIT "\xee\xab\xbc" // U+eafc -#define ICON_VS_GIT_COMPARE "\xee\xab\xbd" // U+eafd -#define ICON_VS_COMPARE_CHANGES "\xee\xab\xbd" // U+eafd -#define ICON_VS_GIT_MERGE "\xee\xab\xbe" // U+eafe -#define ICON_VS_GITHUB_ACTION "\xee\xab\xbf" // U+eaff -#define ICON_VS_GITHUB_ALT "\xee\xac\x80" // U+eb00 -#define ICON_VS_GLOBE "\xee\xac\x81" // U+eb01 -#define ICON_VS_GRABBER "\xee\xac\x82" // U+eb02 -#define ICON_VS_GRAPH "\xee\xac\x83" // U+eb03 -#define ICON_VS_GRIPPER "\xee\xac\x84" // U+eb04 -#define ICON_VS_HEART "\xee\xac\x85" // U+eb05 -#define ICON_VS_HOME "\xee\xac\x86" // U+eb06 -#define ICON_VS_HORIZONTAL_RULE "\xee\xac\x87" // U+eb07 -#define ICON_VS_HUBOT "\xee\xac\x88" // U+eb08 -#define ICON_VS_INBOX "\xee\xac\x89" // U+eb09 -#define ICON_VS_ISSUE_REOPENED "\xee\xac\x8b" // U+eb0b -#define ICON_VS_ISSUES "\xee\xac\x8c" // U+eb0c -#define ICON_VS_ITALIC "\xee\xac\x8d" // U+eb0d -#define ICON_VS_JERSEY "\xee\xac\x8e" // U+eb0e -#define ICON_VS_JSON "\xee\xac\x8f" // U+eb0f -#define ICON_VS_KEBAB_VERTICAL "\xee\xac\x90" // U+eb10 -#define ICON_VS_KEY "\xee\xac\x91" // U+eb11 -#define ICON_VS_LAW "\xee\xac\x92" // U+eb12 -#define ICON_VS_LIGHTBULB_AUTOFIX "\xee\xac\x93" // U+eb13 -#define ICON_VS_LINK_EXTERNAL "\xee\xac\x94" // U+eb14 -#define ICON_VS_LINK "\xee\xac\x95" // U+eb15 -#define ICON_VS_LIST_ORDERED "\xee\xac\x96" // U+eb16 -#define ICON_VS_LIST_UNORDERED "\xee\xac\x97" // U+eb17 -#define ICON_VS_LIVE_SHARE "\xee\xac\x98" // U+eb18 -#define ICON_VS_LOADING "\xee\xac\x99" // U+eb19 -#define ICON_VS_LOCATION "\xee\xac\x9a" // U+eb1a -#define ICON_VS_MAIL_READ "\xee\xac\x9b" // U+eb1b -#define ICON_VS_MAIL "\xee\xac\x9c" // U+eb1c -#define ICON_VS_MARKDOWN "\xee\xac\x9d" // U+eb1d -#define ICON_VS_MEGAPHONE "\xee\xac\x9e" // U+eb1e -#define ICON_VS_MENTION "\xee\xac\x9f" // U+eb1f -#define ICON_VS_MILESTONE "\xee\xac\xa0" // U+eb20 -#define ICON_VS_GIT_PULL_REQUEST_MILESTONE "\xee\xac\xa0" // U+eb20 -#define ICON_VS_MORTAR_BOARD "\xee\xac\xa1" // U+eb21 -#define ICON_VS_MOVE "\xee\xac\xa2" // U+eb22 -#define ICON_VS_MULTIPLE_WINDOWS "\xee\xac\xa3" // U+eb23 -#define ICON_VS_MUTE "\xee\xac\xa4" // U+eb24 -#define ICON_VS_NO_NEWLINE "\xee\xac\xa5" // U+eb25 -#define ICON_VS_NOTE "\xee\xac\xa6" // U+eb26 -#define ICON_VS_OCTOFACE "\xee\xac\xa7" // U+eb27 -#define ICON_VS_OPEN_PREVIEW "\xee\xac\xa8" // U+eb28 -#define ICON_VS_PACKAGE "\xee\xac\xa9" // U+eb29 -#define ICON_VS_PAINTCAN "\xee\xac\xaa" // U+eb2a -#define ICON_VS_PIN "\xee\xac\xab" // U+eb2b -#define ICON_VS_PLAY "\xee\xac\xac" // U+eb2c -#define ICON_VS_RUN "\xee\xac\xac" // U+eb2c -#define ICON_VS_PLUG "\xee\xac\xad" // U+eb2d -#define ICON_VS_PRESERVE_CASE "\xee\xac\xae" // U+eb2e -#define ICON_VS_PREVIEW "\xee\xac\xaf" // U+eb2f -#define ICON_VS_PROJECT "\xee\xac\xb0" // U+eb30 -#define ICON_VS_PULSE "\xee\xac\xb1" // U+eb31 -#define ICON_VS_QUESTION "\xee\xac\xb2" // U+eb32 -#define ICON_VS_QUOTE "\xee\xac\xb3" // U+eb33 -#define ICON_VS_RADIO_TOWER "\xee\xac\xb4" // U+eb34 -#define ICON_VS_REACTIONS "\xee\xac\xb5" // U+eb35 -#define ICON_VS_REFERENCES "\xee\xac\xb6" // U+eb36 -#define ICON_VS_REFRESH "\xee\xac\xb7" // U+eb37 -#define ICON_VS_REGEX "\xee\xac\xb8" // U+eb38 -#define ICON_VS_REMOTE_EXPLORER "\xee\xac\xb9" // U+eb39 -#define ICON_VS_REMOTE "\xee\xac\xba" // U+eb3a -#define ICON_VS_REMOVE "\xee\xac\xbb" // U+eb3b -#define ICON_VS_REPLACE_ALL "\xee\xac\xbc" // U+eb3c -#define ICON_VS_REPLACE "\xee\xac\xbd" // U+eb3d -#define ICON_VS_REPO_CLONE "\xee\xac\xbe" // U+eb3e -#define ICON_VS_REPO_FORCE_PUSH "\xee\xac\xbf" // U+eb3f -#define ICON_VS_REPO_PULL "\xee\xad\x80" // U+eb40 -#define ICON_VS_REPO_PUSH "\xee\xad\x81" // U+eb41 -#define ICON_VS_REPORT "\xee\xad\x82" // U+eb42 -#define ICON_VS_REQUEST_CHANGES "\xee\xad\x83" // U+eb43 -#define ICON_VS_ROCKET "\xee\xad\x84" // U+eb44 -#define ICON_VS_ROOT_FOLDER_OPENED "\xee\xad\x85" // U+eb45 -#define ICON_VS_ROOT_FOLDER "\xee\xad\x86" // U+eb46 -#define ICON_VS_RSS "\xee\xad\x87" // U+eb47 -#define ICON_VS_RUBY "\xee\xad\x88" // U+eb48 -#define ICON_VS_SAVE_ALL "\xee\xad\x89" // U+eb49 -#define ICON_VS_SAVE_AS "\xee\xad\x8a" // U+eb4a -#define ICON_VS_SAVE "\xee\xad\x8b" // U+eb4b -#define ICON_VS_SCREEN_FULL "\xee\xad\x8c" // U+eb4c -#define ICON_VS_SCREEN_NORMAL "\xee\xad\x8d" // U+eb4d -#define ICON_VS_SEARCH_STOP "\xee\xad\x8e" // U+eb4e -#define ICON_VS_SERVER "\xee\xad\x90" // U+eb50 -#define ICON_VS_SETTINGS_GEAR "\xee\xad\x91" // U+eb51 -#define ICON_VS_SETTINGS "\xee\xad\x92" // U+eb52 -#define ICON_VS_SHIELD "\xee\xad\x93" // U+eb53 -#define ICON_VS_SMILEY "\xee\xad\x94" // U+eb54 -#define ICON_VS_SORT_PRECEDENCE "\xee\xad\x95" // U+eb55 -#define ICON_VS_SPLIT_HORIZONTAL "\xee\xad\x96" // U+eb56 -#define ICON_VS_SPLIT_VERTICAL "\xee\xad\x97" // U+eb57 -#define ICON_VS_SQUIRREL "\xee\xad\x98" // U+eb58 -#define ICON_VS_STAR_FULL "\xee\xad\x99" // U+eb59 -#define ICON_VS_STAR_HALF "\xee\xad\x9a" // U+eb5a -#define ICON_VS_SYMBOL_CLASS "\xee\xad\x9b" // U+eb5b -#define ICON_VS_SYMBOL_COLOR "\xee\xad\x9c" // U+eb5c -#define ICON_VS_SYMBOL_CONSTANT "\xee\xad\x9d" // U+eb5d -#define ICON_VS_SYMBOL_ENUM_MEMBER "\xee\xad\x9e" // U+eb5e -#define ICON_VS_SYMBOL_FIELD "\xee\xad\x9f" // U+eb5f -#define ICON_VS_SYMBOL_FILE "\xee\xad\xa0" // U+eb60 -#define ICON_VS_SYMBOL_INTERFACE "\xee\xad\xa1" // U+eb61 -#define ICON_VS_SYMBOL_KEYWORD "\xee\xad\xa2" // U+eb62 -#define ICON_VS_SYMBOL_MISC "\xee\xad\xa3" // U+eb63 -#define ICON_VS_SYMBOL_OPERATOR "\xee\xad\xa4" // U+eb64 -#define ICON_VS_SYMBOL_PROPERTY "\xee\xad\xa5" // U+eb65 -#define ICON_VS_WRENCH "\xee\xad\xa5" // U+eb65 -#define ICON_VS_WRENCH_SUBACTION "\xee\xad\xa5" // U+eb65 -#define ICON_VS_SYMBOL_SNIPPET "\xee\xad\xa6" // U+eb66 -#define ICON_VS_TASKLIST "\xee\xad\xa7" // U+eb67 -#define ICON_VS_TELESCOPE "\xee\xad\xa8" // U+eb68 -#define ICON_VS_TEXT_SIZE "\xee\xad\xa9" // U+eb69 -#define ICON_VS_THREE_BARS "\xee\xad\xaa" // U+eb6a -#define ICON_VS_THUMBSDOWN "\xee\xad\xab" // U+eb6b -#define ICON_VS_THUMBSUP "\xee\xad\xac" // U+eb6c -#define ICON_VS_TOOLS "\xee\xad\xad" // U+eb6d -#define ICON_VS_TRIANGLE_DOWN "\xee\xad\xae" // U+eb6e -#define ICON_VS_TRIANGLE_LEFT "\xee\xad\xaf" // U+eb6f -#define ICON_VS_TRIANGLE_RIGHT "\xee\xad\xb0" // U+eb70 -#define ICON_VS_TRIANGLE_UP "\xee\xad\xb1" // U+eb71 -#define ICON_VS_TWITTER "\xee\xad\xb2" // U+eb72 -#define ICON_VS_UNFOLD "\xee\xad\xb3" // U+eb73 -#define ICON_VS_UNLOCK "\xee\xad\xb4" // U+eb74 -#define ICON_VS_UNMUTE "\xee\xad\xb5" // U+eb75 -#define ICON_VS_UNVERIFIED "\xee\xad\xb6" // U+eb76 -#define ICON_VS_VERIFIED "\xee\xad\xb7" // U+eb77 -#define ICON_VS_VERSIONS "\xee\xad\xb8" // U+eb78 -#define ICON_VS_VM_ACTIVE "\xee\xad\xb9" // U+eb79 -#define ICON_VS_VM_OUTLINE "\xee\xad\xba" // U+eb7a -#define ICON_VS_VM_RUNNING "\xee\xad\xbb" // U+eb7b -#define ICON_VS_WATCH "\xee\xad\xbc" // U+eb7c -#define ICON_VS_WHITESPACE "\xee\xad\xbd" // U+eb7d -#define ICON_VS_WHOLE_WORD "\xee\xad\xbe" // U+eb7e -#define ICON_VS_WINDOW "\xee\xad\xbf" // U+eb7f -#define ICON_VS_WORD_WRAP "\xee\xae\x80" // U+eb80 -#define ICON_VS_ZOOM_IN "\xee\xae\x81" // U+eb81 -#define ICON_VS_ZOOM_OUT "\xee\xae\x82" // U+eb82 -#define ICON_VS_LIST_FILTER "\xee\xae\x83" // U+eb83 -#define ICON_VS_LIST_FLAT "\xee\xae\x84" // U+eb84 -#define ICON_VS_LIST_SELECTION "\xee\xae\x85" // U+eb85 -#define ICON_VS_SELECTION "\xee\xae\x85" // U+eb85 -#define ICON_VS_LIST_TREE "\xee\xae\x86" // U+eb86 -#define ICON_VS_DEBUG_BREAKPOINT_FUNCTION_UNVERIFIED "\xee\xae\x87" // U+eb87 -#define ICON_VS_DEBUG_BREAKPOINT_FUNCTION "\xee\xae\x88" // U+eb88 -#define ICON_VS_DEBUG_BREAKPOINT_FUNCTION_DISABLED "\xee\xae\x88" // U+eb88 -#define ICON_VS_DEBUG_STACKFRAME_ACTIVE "\xee\xae\x89" // U+eb89 -#define ICON_VS_CIRCLE_SMALL_FILLED "\xee\xae\x8a" // U+eb8a -#define ICON_VS_DEBUG_STACKFRAME_DOT "\xee\xae\x8a" // U+eb8a -#define ICON_VS_TERMINAL_DECORATION_MARK "\xee\xae\x8a" // U+eb8a -#define ICON_VS_DEBUG_STACKFRAME "\xee\xae\x8b" // U+eb8b -#define ICON_VS_DEBUG_STACKFRAME_FOCUSED "\xee\xae\x8b" // U+eb8b -#define ICON_VS_DEBUG_BREAKPOINT_UNSUPPORTED "\xee\xae\x8c" // U+eb8c -#define ICON_VS_SYMBOL_STRING "\xee\xae\x8d" // U+eb8d -#define ICON_VS_DEBUG_REVERSE_CONTINUE "\xee\xae\x8e" // U+eb8e -#define ICON_VS_DEBUG_STEP_BACK "\xee\xae\x8f" // U+eb8f -#define ICON_VS_DEBUG_RESTART_FRAME "\xee\xae\x90" // U+eb90 -#define ICON_VS_DEBUG_ALT "\xee\xae\x91" // U+eb91 -#define ICON_VS_CALL_INCOMING "\xee\xae\x92" // U+eb92 -#define ICON_VS_CALL_OUTGOING "\xee\xae\x93" // U+eb93 -#define ICON_VS_MENU "\xee\xae\x94" // U+eb94 -#define ICON_VS_EXPAND_ALL "\xee\xae\x95" // U+eb95 -#define ICON_VS_FEEDBACK "\xee\xae\x96" // U+eb96 -#define ICON_VS_GIT_PULL_REQUEST_REVIEWER "\xee\xae\x96" // U+eb96 -#define ICON_VS_GROUP_BY_REF_TYPE "\xee\xae\x97" // U+eb97 -#define ICON_VS_UNGROUP_BY_REF_TYPE "\xee\xae\x98" // U+eb98 -#define ICON_VS_ACCOUNT "\xee\xae\x99" // U+eb99 -#define ICON_VS_GIT_PULL_REQUEST_ASSIGNEE "\xee\xae\x99" // U+eb99 -#define ICON_VS_BELL_DOT "\xee\xae\x9a" // U+eb9a -#define ICON_VS_DEBUG_CONSOLE "\xee\xae\x9b" // U+eb9b -#define ICON_VS_LIBRARY "\xee\xae\x9c" // U+eb9c -#define ICON_VS_OUTPUT "\xee\xae\x9d" // U+eb9d -#define ICON_VS_RUN_ALL "\xee\xae\x9e" // U+eb9e -#define ICON_VS_SYNC_IGNORED "\xee\xae\x9f" // U+eb9f -#define ICON_VS_PINNED "\xee\xae\xa0" // U+eba0 -#define ICON_VS_GITHUB_INVERTED "\xee\xae\xa1" // U+eba1 -#define ICON_VS_SERVER_PROCESS "\xee\xae\xa2" // U+eba2 -#define ICON_VS_SERVER_ENVIRONMENT "\xee\xae\xa3" // U+eba3 -#define ICON_VS_PASS "\xee\xae\xa4" // U+eba4 -#define ICON_VS_ISSUE_CLOSED "\xee\xae\xa4" // U+eba4 -#define ICON_VS_STOP_CIRCLE "\xee\xae\xa5" // U+eba5 -#define ICON_VS_PLAY_CIRCLE "\xee\xae\xa6" // U+eba6 -#define ICON_VS_RECORD "\xee\xae\xa7" // U+eba7 -#define ICON_VS_DEBUG_ALT_SMALL "\xee\xae\xa8" // U+eba8 -#define ICON_VS_VM_CONNECT "\xee\xae\xa9" // U+eba9 -#define ICON_VS_CLOUD "\xee\xae\xaa" // U+ebaa -#define ICON_VS_MERGE "\xee\xae\xab" // U+ebab -#define ICON_VS_EXPORT "\xee\xae\xac" // U+ebac -#define ICON_VS_GRAPH_LEFT "\xee\xae\xad" // U+ebad -#define ICON_VS_MAGNET "\xee\xae\xae" // U+ebae -#define ICON_VS_NOTEBOOK "\xee\xae\xaf" // U+ebaf -#define ICON_VS_REDO "\xee\xae\xb0" // U+ebb0 -#define ICON_VS_CHECK_ALL "\xee\xae\xb1" // U+ebb1 -#define ICON_VS_PINNED_DIRTY "\xee\xae\xb2" // U+ebb2 -#define ICON_VS_PASS_FILLED "\xee\xae\xb3" // U+ebb3 -#define ICON_VS_CIRCLE_LARGE_FILLED "\xee\xae\xb4" // U+ebb4 -#define ICON_VS_CIRCLE_LARGE "\xee\xae\xb5" // U+ebb5 -#define ICON_VS_CIRCLE_LARGE_OUTLINE "\xee\xae\xb5" // U+ebb5 -#define ICON_VS_COMBINE "\xee\xae\xb6" // U+ebb6 -#define ICON_VS_GATHER "\xee\xae\xb6" // U+ebb6 -#define ICON_VS_TABLE "\xee\xae\xb7" // U+ebb7 -#define ICON_VS_VARIABLE_GROUP "\xee\xae\xb8" // U+ebb8 -#define ICON_VS_TYPE_HIERARCHY "\xee\xae\xb9" // U+ebb9 -#define ICON_VS_TYPE_HIERARCHY_SUB "\xee\xae\xba" // U+ebba -#define ICON_VS_TYPE_HIERARCHY_SUPER "\xee\xae\xbb" // U+ebbb -#define ICON_VS_GIT_PULL_REQUEST_CREATE "\xee\xae\xbc" // U+ebbc -#define ICON_VS_RUN_ABOVE "\xee\xae\xbd" // U+ebbd -#define ICON_VS_RUN_BELOW "\xee\xae\xbe" // U+ebbe -#define ICON_VS_NOTEBOOK_TEMPLATE "\xee\xae\xbf" // U+ebbf -#define ICON_VS_DEBUG_RERUN "\xee\xaf\x80" // U+ebc0 -#define ICON_VS_WORKSPACE_TRUSTED "\xee\xaf\x81" // U+ebc1 -#define ICON_VS_WORKSPACE_UNTRUSTED "\xee\xaf\x82" // U+ebc2 -#define ICON_VS_WORKSPACE_UNKNOWN "\xee\xaf\x83" // U+ebc3 -#define ICON_VS_TERMINAL_CMD "\xee\xaf\x84" // U+ebc4 -#define ICON_VS_TERMINAL_DEBIAN "\xee\xaf\x85" // U+ebc5 -#define ICON_VS_TERMINAL_LINUX "\xee\xaf\x86" // U+ebc6 -#define ICON_VS_TERMINAL_POWERSHELL "\xee\xaf\x87" // U+ebc7 -#define ICON_VS_TERMINAL_TMUX "\xee\xaf\x88" // U+ebc8 -#define ICON_VS_TERMINAL_UBUNTU "\xee\xaf\x89" // U+ebc9 -#define ICON_VS_TERMINAL_BASH "\xee\xaf\x8a" // U+ebca -#define ICON_VS_ARROW_SWAP "\xee\xaf\x8b" // U+ebcb -#define ICON_VS_COPY "\xee\xaf\x8c" // U+ebcc -#define ICON_VS_PERSON_ADD "\xee\xaf\x8d" // U+ebcd -#define ICON_VS_FILTER_FILLED "\xee\xaf\x8e" // U+ebce -#define ICON_VS_WAND "\xee\xaf\x8f" // U+ebcf -#define ICON_VS_DEBUG_LINE_BY_LINE "\xee\xaf\x90" // U+ebd0 -#define ICON_VS_INSPECT "\xee\xaf\x91" // U+ebd1 -#define ICON_VS_LAYERS "\xee\xaf\x92" // U+ebd2 -#define ICON_VS_LAYERS_DOT "\xee\xaf\x93" // U+ebd3 -#define ICON_VS_LAYERS_ACTIVE "\xee\xaf\x94" // U+ebd4 -#define ICON_VS_COMPASS "\xee\xaf\x95" // U+ebd5 -#define ICON_VS_COMPASS_DOT "\xee\xaf\x96" // U+ebd6 -#define ICON_VS_COMPASS_ACTIVE "\xee\xaf\x97" // U+ebd7 -#define ICON_VS_AZURE "\xee\xaf\x98" // U+ebd8 -#define ICON_VS_ISSUE_DRAFT "\xee\xaf\x99" // U+ebd9 -#define ICON_VS_GIT_PULL_REQUEST_CLOSED "\xee\xaf\x9a" // U+ebda -#define ICON_VS_GIT_PULL_REQUEST_DRAFT "\xee\xaf\x9b" // U+ebdb -#define ICON_VS_DEBUG_ALL "\xee\xaf\x9c" // U+ebdc -#define ICON_VS_DEBUG_COVERAGE "\xee\xaf\x9d" // U+ebdd -#define ICON_VS_RUN_ERRORS "\xee\xaf\x9e" // U+ebde -#define ICON_VS_FOLDER_LIBRARY "\xee\xaf\x9f" // U+ebdf -#define ICON_VS_DEBUG_CONTINUE_SMALL "\xee\xaf\xa0" // U+ebe0 -#define ICON_VS_BEAKER_STOP "\xee\xaf\xa1" // U+ebe1 -#define ICON_VS_GRAPH_LINE "\xee\xaf\xa2" // U+ebe2 -#define ICON_VS_GRAPH_SCATTER "\xee\xaf\xa3" // U+ebe3 -#define ICON_VS_PIE_CHART "\xee\xaf\xa4" // U+ebe4 -#define ICON_VS_BRACKET "\xee\xac\x8f" // U+eb0f -#define ICON_VS_BRACKET_DOT "\xee\xaf\xa5" // U+ebe5 -#define ICON_VS_BRACKET_ERROR "\xee\xaf\xa6" // U+ebe6 -#define ICON_VS_LOCK_SMALL "\xee\xaf\xa7" // U+ebe7 -#define ICON_VS_AZURE_DEVOPS "\xee\xaf\xa8" // U+ebe8 -#define ICON_VS_VERIFIED_FILLED "\xee\xaf\xa9" // U+ebe9 -#define ICON_VS_NEWLINE "\xee\xaf\xaa" // U+ebea -#define ICON_VS_LAYOUT "\xee\xaf\xab" // U+ebeb -#define ICON_VS_LAYOUT_ACTIVITYBAR_LEFT "\xee\xaf\xac" // U+ebec -#define ICON_VS_LAYOUT_ACTIVITYBAR_RIGHT "\xee\xaf\xad" // U+ebed -#define ICON_VS_LAYOUT_PANEL_LEFT "\xee\xaf\xae" // U+ebee -#define ICON_VS_LAYOUT_PANEL_CENTER "\xee\xaf\xaf" // U+ebef -#define ICON_VS_LAYOUT_PANEL_JUSTIFY "\xee\xaf\xb0" // U+ebf0 -#define ICON_VS_LAYOUT_PANEL_RIGHT "\xee\xaf\xb1" // U+ebf1 -#define ICON_VS_LAYOUT_PANEL "\xee\xaf\xb2" // U+ebf2 -#define ICON_VS_LAYOUT_SIDEBAR_LEFT "\xee\xaf\xb3" // U+ebf3 -#define ICON_VS_LAYOUT_SIDEBAR_RIGHT "\xee\xaf\xb4" // U+ebf4 -#define ICON_VS_LAYOUT_STATUSBAR "\xee\xaf\xb5" // U+ebf5 -#define ICON_VS_LAYOUT_MENUBAR "\xee\xaf\xb6" // U+ebf6 -#define ICON_VS_LAYOUT_CENTERED "\xee\xaf\xb7" // U+ebf7 -#define ICON_VS_TARGET "\xee\xaf\xb8" // U+ebf8 -#define ICON_VS_INDENT "\xee\xaf\xb9" // U+ebf9 -#define ICON_VS_RECORD_SMALL "\xee\xaf\xba" // U+ebfa -#define ICON_VS_ERROR_SMALL "\xee\xaf\xbb" // U+ebfb -#define ICON_VS_TERMINAL_DECORATION_ERROR "\xee\xaf\xbb" // U+ebfb -#define ICON_VS_ARROW_CIRCLE_DOWN "\xee\xaf\xbc" // U+ebfc -#define ICON_VS_ARROW_CIRCLE_LEFT "\xee\xaf\xbd" // U+ebfd -#define ICON_VS_ARROW_CIRCLE_RIGHT "\xee\xaf\xbe" // U+ebfe -#define ICON_VS_ARROW_CIRCLE_UP "\xee\xaf\xbf" // U+ebff -#define ICON_VS_LAYOUT_SIDEBAR_RIGHT_OFF "\xee\xb0\x80" // U+ec00 -#define ICON_VS_LAYOUT_PANEL_OFF "\xee\xb0\x81" // U+ec01 -#define ICON_VS_LAYOUT_SIDEBAR_LEFT_OFF "\xee\xb0\x82" // U+ec02 -#define ICON_VS_BLANK "\xee\xb0\x83" // U+ec03 -#define ICON_VS_HEART_FILLED "\xee\xb0\x84" // U+ec04 -#define ICON_VS_MAP "\xee\xb0\x85" // U+ec05 -#define ICON_VS_MAP_FILLED "\xee\xb0\x86" // U+ec06 -#define ICON_VS_CIRCLE_SMALL "\xee\xb0\x87" // U+ec07 -#define ICON_VS_BELL_SLASH "\xee\xb0\x88" // U+ec08 -#define ICON_VS_BELL_SLASH_DOT "\xee\xb0\x89" // U+ec09 -#define ICON_VS_COMMENT_UNRESOLVED "\xee\xb0\x8a" // U+ec0a -#define ICON_VS_GIT_PULL_REQUEST_GO_TO_CHANGES "\xee\xb0\x8b" // U+ec0b -#define ICON_VS_GIT_PULL_REQUEST_NEW_CHANGES "\xee\xb0\x8c" // U+ec0c -#define ICON_VS_SEARCH_FUZZY "\xee\xb0\x8d" // U+ec0d -#define ICON_VS_COMMENT_DRAFT "\xee\xb0\x8e" // U+ec0e -#define ICON_VS_SEND "\xee\xb0\x8f" // U+ec0f -#define ICON_VS_SPARKLE "\xee\xb0\x90" // U+ec10 -#define ICON_VS_INSERT "\xee\xb0\x91" // U+ec11 -#define ICON_VS_MIC "\xee\xb0\x92" // U+ec12 -#define ICON_VS_THUMBSDOWN_FILLED "\xee\xb0\x93" // U+ec13 -#define ICON_VS_THUMBSUP_FILLED "\xee\xb0\x94" // U+ec14 -#define ICON_VS_COFFEE "\xee\xb0\x95" // U+ec15 -#define ICON_VS_SNAKE "\xee\xb0\x96" // U+ec16 -#define ICON_VS_GAME "\xee\xb0\x97" // U+ec17 -#define ICON_VS_VR "\xee\xb0\x98" // U+ec18 -#define ICON_VS_CHIP "\xee\xb0\x99" // U+ec19 -#define ICON_VS_PIANO "\xee\xb0\x9a" // U+ec1a -#define ICON_VS_MUSIC "\xee\xb0\x9b" // U+ec1b -#define ICON_VS_MIC_FILLED "\xee\xb0\x9c" // U+ec1c -#define ICON_VS_GIT_FETCH "\xee\xb0\x9d" // U+ec1d -#define ICON_VS_COPILOT "\xee\xb0\x9e" // U+ec1e -#define ICON_VS_LIGHTBULB_SPARKLE "\xee\xb0\x9f" // U+ec1f -#define ICON_VS_ROBOT "\xee\xb0\xa0" // U+ec20 -#define ICON_VS_SPARKLE_FILLED "\xee\xb0\xa1" // U+ec21 -#define ICON_VS_DIFF_SINGLE "\xee\xb0\xa2" // U+ec22 -#define ICON_VS_DIFF_MULTIPLE "\xee\xb0\xa3" // U+ec23 -#define ICON_VS_SURROUND_WITH "\xee\xb0\xa4" // U+ec24 -#define ICON_VS_SHARE "\xee\xb0\xa5" // U+ec25 +#define ICON_MAX_16_VS 0xf101 +#define ICON_MAX_VS 0xf101 +#define ICON_VS_ADD "\xee\xa9\xa0" // U+EA60 +#define ICON_VS_LIGHTBULB "\xee\xa9\xa1" // U+EA61 +#define ICON_VS_REPO "\xee\xa9\xa2" // U+EA62 +#define ICON_VS_REPO_FORKED "\xee\xa9\xa3" // U+EA63 +#define ICON_VS_GIT_PULL_REQUEST "\xee\xa9\xa4" // U+EA64 +#define ICON_VS_RECORD_KEYS "\xee\xa9\xa5" // U+EA65 +#define ICON_VS_TAG "\xee\xa9\xa6" // U+EA66 +#define ICON_VS_PERSON "\xee\xa9\xa7" // U+EA67 +#define ICON_VS_SOURCE_CONTROL "\xee\xa9\xa8" // U+EA68 +#define ICON_VS_MIRROR "\xee\xa9\xa9" // U+EA69 +#define ICON_VS_STAR_EMPTY "\xee\xa9\xaa" // U+EA6A +#define ICON_VS_COMMENT "\xee\xa9\xab" // U+EA6B +#define ICON_VS_WARNING "\xee\xa9\xac" // U+EA6C +#define ICON_VS_SEARCH "\xee\xa9\xad" // U+EA6D +#define ICON_VS_SIGN_OUT "\xee\xa9\xae" // U+EA6E +#define ICON_VS_SIGN_IN "\xee\xa9\xaf" // U+EA6F +#define ICON_VS_EYE "\xee\xa9\xb0" // U+EA70 +#define ICON_VS_CIRCLE_FILLED "\xee\xa9\xb1" // U+EA71 +#define ICON_VS_PRIMITIVE_SQUARE "\xee\xa9\xb2" // U+EA72 +#define ICON_VS_EDIT "\xee\xa9\xb3" // U+EA73 +#define ICON_VS_INFO "\xee\xa9\xb4" // U+EA74 +#define ICON_VS_LOCK "\xee\xa9\xb5" // U+EA75 +#define ICON_VS_CLOSE "\xee\xa9\xb6" // U+EA76 +#define ICON_VS_SYNC "\xee\xa9\xb7" // U+EA77 +#define ICON_VS_DESKTOP_DOWNLOAD "\xee\xa9\xb8" // U+EA78 +#define ICON_VS_BEAKER "\xee\xa9\xb9" // U+EA79 +#define ICON_VS_VM "\xee\xa9\xba" // U+EA7A +#define ICON_VS_FILE "\xee\xa9\xbb" // U+EA7B +#define ICON_VS_ELLIPSIS "\xee\xa9\xbc" // U+EA7C +#define ICON_VS_REPLY "\xee\xa9\xbd" // U+EA7D +#define ICON_VS_ORGANIZATION "\xee\xa9\xbe" // U+EA7E +#define ICON_VS_NEW_FILE "\xee\xa9\xbf" // U+EA7F +#define ICON_VS_NEW_FOLDER "\xee\xaa\x80" // U+EA80 +#define ICON_VS_TRASH "\xee\xaa\x81" // U+EA81 +#define ICON_VS_HISTORY "\xee\xaa\x82" // U+EA82 +#define ICON_VS_FOLDER "\xee\xaa\x83" // U+EA83 +#define ICON_VS_GITHUB "\xee\xaa\x84" // U+EA84 +#define ICON_VS_TERMINAL "\xee\xaa\x85" // U+EA85 +#define ICON_VS_SYMBOL_EVENT "\xee\xaa\x86" // U+EA86 +#define ICON_VS_ERROR "\xee\xaa\x87" // U+EA87 +#define ICON_VS_SYMBOL_VARIABLE "\xee\xaa\x88" // U+EA88 +#define ICON_VS_SYMBOL_ARRAY "\xee\xaa\x8a" // U+EA8A +#define ICON_VS_SYMBOL_NAMESPACE "\xee\xaa\x8b" // U+EA8B +#define ICON_VS_SYMBOL_METHOD "\xee\xaa\x8c" // U+EA8C +#define ICON_VS_SYMBOL_BOOLEAN "\xee\xaa\x8f" // U+EA8F +#define ICON_VS_SYMBOL_NUMERIC "\xee\xaa\x90" // U+EA90 +#define ICON_VS_SYMBOL_STRUCTURE "\xee\xaa\x91" // U+EA91 +#define ICON_VS_SYMBOL_PARAMETER "\xee\xaa\x92" // U+EA92 +#define ICON_VS_SYMBOL_KEY "\xee\xaa\x93" // U+EA93 +#define ICON_VS_GO_TO_FILE "\xee\xaa\x94" // U+EA94 +#define ICON_VS_SYMBOL_ENUM "\xee\xaa\x95" // U+EA95 +#define ICON_VS_SYMBOL_RULER "\xee\xaa\x96" // U+EA96 +#define ICON_VS_ACTIVATE_BREAKPOINTS "\xee\xaa\x97" // U+EA97 +#define ICON_VS_ARCHIVE "\xee\xaa\x98" // U+EA98 +#define ICON_VS_ARROW_BOTH "\xee\xaa\x99" // U+EA99 +#define ICON_VS_ARROW_DOWN "\xee\xaa\x9a" // U+EA9A +#define ICON_VS_ARROW_LEFT "\xee\xaa\x9b" // U+EA9B +#define ICON_VS_ARROW_RIGHT "\xee\xaa\x9c" // U+EA9C +#define ICON_VS_ARROW_SMALL_DOWN "\xee\xaa\x9d" // U+EA9D +#define ICON_VS_ARROW_SMALL_LEFT "\xee\xaa\x9e" // U+EA9E +#define ICON_VS_ARROW_SMALL_RIGHT "\xee\xaa\x9f" // U+EA9F +#define ICON_VS_ARROW_SMALL_UP "\xee\xaa\xa0" // U+EAA0 +#define ICON_VS_ARROW_UP "\xee\xaa\xa1" // U+EAA1 +#define ICON_VS_BELL "\xee\xaa\xa2" // U+EAA2 +#define ICON_VS_BOLD "\xee\xaa\xa3" // U+EAA3 +#define ICON_VS_BOOK "\xee\xaa\xa4" // U+EAA4 +#define ICON_VS_BOOKMARK "\xee\xaa\xa5" // U+EAA5 +#define ICON_VS_DEBUG_BREAKPOINT_CONDITIONAL_UNVERIFIED "\xee\xaa\xa6" // U+EAA6 +#define ICON_VS_DEBUG_BREAKPOINT_CONDITIONAL "\xee\xaa\xa7" // U+EAA7 +#define ICON_VS_DEBUG_BREAKPOINT_DATA_UNVERIFIED "\xee\xaa\xa8" // U+EAA8 +#define ICON_VS_DEBUG_BREAKPOINT_DATA "\xee\xaa\xa9" // U+EAA9 +#define ICON_VS_DEBUG_BREAKPOINT_LOG_UNVERIFIED "\xee\xaa\xaa" // U+EAAA +#define ICON_VS_DEBUG_BREAKPOINT_LOG "\xee\xaa\xab" // U+EAAB +#define ICON_VS_BRIEFCASE "\xee\xaa\xac" // U+EAAC +#define ICON_VS_BROADCAST "\xee\xaa\xad" // U+EAAD +#define ICON_VS_BROWSER "\xee\xaa\xae" // U+EAAE +#define ICON_VS_BUG "\xee\xaa\xaf" // U+EAAF +#define ICON_VS_CALENDAR "\xee\xaa\xb0" // U+EAB0 +#define ICON_VS_CASE_SENSITIVE "\xee\xaa\xb1" // U+EAB1 +#define ICON_VS_CHECK "\xee\xaa\xb2" // U+EAB2 +#define ICON_VS_CHECKLIST "\xee\xaa\xb3" // U+EAB3 +#define ICON_VS_CHEVRON_DOWN "\xee\xaa\xb4" // U+EAB4 +#define ICON_VS_CHEVRON_LEFT "\xee\xaa\xb5" // U+EAB5 +#define ICON_VS_CHEVRON_RIGHT "\xee\xaa\xb6" // U+EAB6 +#define ICON_VS_CHEVRON_UP "\xee\xaa\xb7" // U+EAB7 +#define ICON_VS_CHROME_CLOSE "\xee\xaa\xb8" // U+EAB8 +#define ICON_VS_CHROME_MAXIMIZE "\xee\xaa\xb9" // U+EAB9 +#define ICON_VS_CHROME_MINIMIZE "\xee\xaa\xba" // U+EABA +#define ICON_VS_CHROME_RESTORE "\xee\xaa\xbb" // U+EABB +#define ICON_VS_CIRCLE "\xee\xaa\xbc" // U+EABC +#define ICON_VS_CIRCLE_SLASH "\xee\xaa\xbd" // U+EABD +#define ICON_VS_CIRCUIT_BOARD "\xee\xaa\xbe" // U+EABE +#define ICON_VS_CLEAR_ALL "\xee\xaa\xbf" // U+EABF +#define ICON_VS_CLIPPY "\xee\xab\x80" // U+EAC0 +#define ICON_VS_CLOSE_ALL "\xee\xab\x81" // U+EAC1 +#define ICON_VS_CLOUD_DOWNLOAD "\xee\xab\x82" // U+EAC2 +#define ICON_VS_CLOUD_UPLOAD "\xee\xab\x83" // U+EAC3 +#define ICON_VS_CODE "\xee\xab\x84" // U+EAC4 +#define ICON_VS_COLLAPSE_ALL "\xee\xab\x85" // U+EAC5 +#define ICON_VS_COLOR_MODE "\xee\xab\x86" // U+EAC6 +#define ICON_VS_COMMENT_DISCUSSION "\xee\xab\x87" // U+EAC7 +#define ICON_VS_CREDIT_CARD "\xee\xab\x89" // U+EAC9 +#define ICON_VS_DASH "\xee\xab\x8c" // U+EACC +#define ICON_VS_DASHBOARD "\xee\xab\x8d" // U+EACD +#define ICON_VS_DATABASE "\xee\xab\x8e" // U+EACE +#define ICON_VS_DEBUG_CONTINUE "\xee\xab\x8f" // U+EACF +#define ICON_VS_DEBUG_DISCONNECT "\xee\xab\x90" // U+EAD0 +#define ICON_VS_DEBUG_PAUSE "\xee\xab\x91" // U+EAD1 +#define ICON_VS_DEBUG_RESTART "\xee\xab\x92" // U+EAD2 +#define ICON_VS_DEBUG_START "\xee\xab\x93" // U+EAD3 +#define ICON_VS_DEBUG_STEP_INTO "\xee\xab\x94" // U+EAD4 +#define ICON_VS_DEBUG_STEP_OUT "\xee\xab\x95" // U+EAD5 +#define ICON_VS_DEBUG_STEP_OVER "\xee\xab\x96" // U+EAD6 +#define ICON_VS_DEBUG_STOP "\xee\xab\x97" // U+EAD7 +#define ICON_VS_DEBUG "\xee\xab\x98" // U+EAD8 +#define ICON_VS_DEVICE_CAMERA_VIDEO "\xee\xab\x99" // U+EAD9 +#define ICON_VS_DEVICE_CAMERA "\xee\xab\x9a" // U+EADA +#define ICON_VS_DEVICE_MOBILE "\xee\xab\x9b" // U+EADB +#define ICON_VS_DIFF_ADDED "\xee\xab\x9c" // U+EADC +#define ICON_VS_DIFF_IGNORED "\xee\xab\x9d" // U+EADD +#define ICON_VS_DIFF_MODIFIED "\xee\xab\x9e" // U+EADE +#define ICON_VS_DIFF_REMOVED "\xee\xab\x9f" // U+EADF +#define ICON_VS_DIFF_RENAMED "\xee\xab\xa0" // U+EAE0 +#define ICON_VS_DIFF "\xee\xab\xa1" // U+EAE1 +#define ICON_VS_DISCARD "\xee\xab\xa2" // U+EAE2 +#define ICON_VS_EDITOR_LAYOUT "\xee\xab\xa3" // U+EAE3 +#define ICON_VS_EMPTY_WINDOW "\xee\xab\xa4" // U+EAE4 +#define ICON_VS_EXCLUDE "\xee\xab\xa5" // U+EAE5 +#define ICON_VS_EXTENSIONS "\xee\xab\xa6" // U+EAE6 +#define ICON_VS_EYE_CLOSED "\xee\xab\xa7" // U+EAE7 +#define ICON_VS_FILE_BINARY "\xee\xab\xa8" // U+EAE8 +#define ICON_VS_FILE_CODE "\xee\xab\xa9" // U+EAE9 +#define ICON_VS_FILE_MEDIA "\xee\xab\xaa" // U+EAEA +#define ICON_VS_FILE_PDF "\xee\xab\xab" // U+EAEB +#define ICON_VS_FILE_SUBMODULE "\xee\xab\xac" // U+EAEC +#define ICON_VS_FILE_SYMLINK_DIRECTORY "\xee\xab\xad" // U+EAED +#define ICON_VS_FILE_SYMLINK_FILE "\xee\xab\xae" // U+EAEE +#define ICON_VS_FILE_ZIP "\xee\xab\xaf" // U+EAEF +#define ICON_VS_FILES "\xee\xab\xb0" // U+EAF0 +#define ICON_VS_FILTER "\xee\xab\xb1" // U+EAF1 +#define ICON_VS_FLAME "\xee\xab\xb2" // U+EAF2 +#define ICON_VS_FOLD_DOWN "\xee\xab\xb3" // U+EAF3 +#define ICON_VS_FOLD_UP "\xee\xab\xb4" // U+EAF4 +#define ICON_VS_FOLD "\xee\xab\xb5" // U+EAF5 +#define ICON_VS_FOLDER_ACTIVE "\xee\xab\xb6" // U+EAF6 +#define ICON_VS_FOLDER_OPENED "\xee\xab\xb7" // U+EAF7 +#define ICON_VS_GEAR "\xee\xab\xb8" // U+EAF8 +#define ICON_VS_GIFT "\xee\xab\xb9" // U+EAF9 +#define ICON_VS_GIST_SECRET "\xee\xab\xba" // U+EAFA +#define ICON_VS_GIST "\xee\xab\xbb" // U+EAFB +#define ICON_VS_GIT_COMMIT "\xee\xab\xbc" // U+EAFC +#define ICON_VS_GIT_COMPARE "\xee\xab\xbd" // U+EAFD +#define ICON_VS_GIT_MERGE "\xee\xab\xbe" // U+EAFE +#define ICON_VS_GITHUB_ACTION "\xee\xab\xbf" // U+EAFF +#define ICON_VS_GITHUB_ALT "\xee\xac\x80" // U+EB00 +#define ICON_VS_GLOBE "\xee\xac\x81" // U+EB01 +#define ICON_VS_GRABBER "\xee\xac\x82" // U+EB02 +#define ICON_VS_GRAPH "\xee\xac\x83" // U+EB03 +#define ICON_VS_GRIPPER "\xee\xac\x84" // U+EB04 +#define ICON_VS_HEART "\xee\xac\x85" // U+EB05 +#define ICON_VS_HOME "\xee\xac\x86" // U+EB06 +#define ICON_VS_HORIZONTAL_RULE "\xee\xac\x87" // U+EB07 +#define ICON_VS_HUBOT "\xee\xac\x88" // U+EB08 +#define ICON_VS_INBOX "\xee\xac\x89" // U+EB09 +#define ICON_VS_ISSUE_REOPENED "\xee\xac\x8b" // U+EB0B +#define ICON_VS_ISSUES "\xee\xac\x8c" // U+EB0C +#define ICON_VS_ITALIC "\xee\xac\x8d" // U+EB0D +#define ICON_VS_JERSEY "\xee\xac\x8e" // U+EB0E +#define ICON_VS_JSON "\xee\xac\x8f" // U+EB0F +#define ICON_VS_KEBAB_VERTICAL "\xee\xac\x90" // U+EB10 +#define ICON_VS_KEY "\xee\xac\x91" // U+EB11 +#define ICON_VS_LAW "\xee\xac\x92" // U+EB12 +#define ICON_VS_LIGHTBULB_AUTOFIX "\xee\xac\x93" // U+EB13 +#define ICON_VS_LINK_EXTERNAL "\xee\xac\x94" // U+EB14 +#define ICON_VS_LINK "\xee\xac\x95" // U+EB15 +#define ICON_VS_LIST_ORDERED "\xee\xac\x96" // U+EB16 +#define ICON_VS_LIST_UNORDERED "\xee\xac\x97" // U+EB17 +#define ICON_VS_LIVE_SHARE "\xee\xac\x98" // U+EB18 +#define ICON_VS_LOADING "\xee\xac\x99" // U+EB19 +#define ICON_VS_LOCATION "\xee\xac\x9a" // U+EB1A +#define ICON_VS_MAIL_READ "\xee\xac\x9b" // U+EB1B +#define ICON_VS_MAIL "\xee\xac\x9c" // U+EB1C +#define ICON_VS_MARKDOWN "\xee\xac\x9d" // U+EB1D +#define ICON_VS_MEGAPHONE "\xee\xac\x9e" // U+EB1E +#define ICON_VS_MENTION "\xee\xac\x9f" // U+EB1F +#define ICON_VS_MILESTONE "\xee\xac\xa0" // U+EB20 +#define ICON_VS_MORTAR_BOARD "\xee\xac\xa1" // U+EB21 +#define ICON_VS_MOVE "\xee\xac\xa2" // U+EB22 +#define ICON_VS_MULTIPLE_WINDOWS "\xee\xac\xa3" // U+EB23 +#define ICON_VS_MUTE "\xee\xac\xa4" // U+EB24 +#define ICON_VS_NO_NEWLINE "\xee\xac\xa5" // U+EB25 +#define ICON_VS_NOTE "\xee\xac\xa6" // U+EB26 +#define ICON_VS_OCTOFACE "\xee\xac\xa7" // U+EB27 +#define ICON_VS_OPEN_PREVIEW "\xee\xac\xa8" // U+EB28 +#define ICON_VS_PACKAGE "\xee\xac\xa9" // U+EB29 +#define ICON_VS_PAINTCAN "\xee\xac\xaa" // U+EB2A +#define ICON_VS_PIN "\xee\xac\xab" // U+EB2B +#define ICON_VS_PLAY "\xee\xac\xac" // U+EB2C +#define ICON_VS_PLUG "\xee\xac\xad" // U+EB2D +#define ICON_VS_PRESERVE_CASE "\xee\xac\xae" // U+EB2E +#define ICON_VS_PREVIEW "\xee\xac\xaf" // U+EB2F +#define ICON_VS_PROJECT "\xee\xac\xb0" // U+EB30 +#define ICON_VS_PULSE "\xee\xac\xb1" // U+EB31 +#define ICON_VS_QUESTION "\xee\xac\xb2" // U+EB32 +#define ICON_VS_QUOTE "\xee\xac\xb3" // U+EB33 +#define ICON_VS_RADIO_TOWER "\xee\xac\xb4" // U+EB34 +#define ICON_VS_REACTIONS "\xee\xac\xb5" // U+EB35 +#define ICON_VS_REFERENCES "\xee\xac\xb6" // U+EB36 +#define ICON_VS_REFRESH "\xee\xac\xb7" // U+EB37 +#define ICON_VS_REGEX "\xee\xac\xb8" // U+EB38 +#define ICON_VS_REMOTE_EXPLORER "\xee\xac\xb9" // U+EB39 +#define ICON_VS_REMOTE "\xee\xac\xba" // U+EB3A +#define ICON_VS_REMOVE "\xee\xac\xbb" // U+EB3B +#define ICON_VS_REPLACE_ALL "\xee\xac\xbc" // U+EB3C +#define ICON_VS_REPLACE "\xee\xac\xbd" // U+EB3D +#define ICON_VS_REPO_CLONE "\xee\xac\xbe" // U+EB3E +#define ICON_VS_REPO_FORCE_PUSH "\xee\xac\xbf" // U+EB3F +#define ICON_VS_REPO_PULL "\xee\xad\x80" // U+EB40 +#define ICON_VS_REPO_PUSH "\xee\xad\x81" // U+EB41 +#define ICON_VS_REPORT "\xee\xad\x82" // U+EB42 +#define ICON_VS_DIFF_SINGLE "\xee\xad\x83" // U+EB43 +#define ICON_VS_ROCKET "\xee\xad\x84" // U+EB44 +#define ICON_VS_ROOT_FOLDER_OPENED "\xee\xad\x85" // U+EB45 +#define ICON_VS_ROOT_FOLDER "\xee\xad\x86" // U+EB46 +#define ICON_VS_RSS "\xee\xad\x87" // U+EB47 +#define ICON_VS_RUBY "\xee\xad\x88" // U+EB48 +#define ICON_VS_SAVE_ALL "\xee\xad\x89" // U+EB49 +#define ICON_VS_SAVE_AS "\xee\xad\x8a" // U+EB4A +#define ICON_VS_SAVE "\xee\xad\x8b" // U+EB4B +#define ICON_VS_SCREEN_FULL "\xee\xad\x8c" // U+EB4C +#define ICON_VS_SCREEN_NORMAL "\xee\xad\x8d" // U+EB4D +#define ICON_VS_SEARCH_STOP "\xee\xad\x8e" // U+EB4E +#define ICON_VS_SERVER "\xee\xad\x90" // U+EB50 +#define ICON_VS_SETTINGS_GEAR "\xee\xad\x91" // U+EB51 +#define ICON_VS_SETTINGS "\xee\xad\x92" // U+EB52 +#define ICON_VS_SHIELD "\xee\xad\x93" // U+EB53 +#define ICON_VS_SMILEY "\xee\xad\x94" // U+EB54 +#define ICON_VS_SORT_PRECEDENCE "\xee\xad\x95" // U+EB55 +#define ICON_VS_SPLIT_HORIZONTAL "\xee\xad\x96" // U+EB56 +#define ICON_VS_SPLIT_VERTICAL "\xee\xad\x97" // U+EB57 +#define ICON_VS_SQUIRREL "\xee\xad\x98" // U+EB58 +#define ICON_VS_STAR_FULL "\xee\xad\x99" // U+EB59 +#define ICON_VS_STAR_HALF "\xee\xad\x9a" // U+EB5A +#define ICON_VS_SYMBOL_CLASS "\xee\xad\x9b" // U+EB5B +#define ICON_VS_SYMBOL_COLOR "\xee\xad\x9c" // U+EB5C +#define ICON_VS_SYMBOL_CONSTANT "\xee\xad\x9d" // U+EB5D +#define ICON_VS_SYMBOL_ENUM_MEMBER "\xee\xad\x9e" // U+EB5E +#define ICON_VS_SYMBOL_FIELD "\xee\xad\x9f" // U+EB5F +#define ICON_VS_SYMBOL_INTERFACE "\xee\xad\xa1" // U+EB61 +#define ICON_VS_SYMBOL_KEYWORD "\xee\xad\xa2" // U+EB62 +#define ICON_VS_SYMBOL_MISC "\xee\xad\xa3" // U+EB63 +#define ICON_VS_SYMBOL_OPERATOR "\xee\xad\xa4" // U+EB64 +#define ICON_VS_SYMBOL_PROPERTY "\xee\xad\xa5" // U+EB65 +#define ICON_VS_SYMBOL_SNIPPET "\xee\xad\xa6" // U+EB66 +#define ICON_VS_TASKLIST "\xee\xad\xa7" // U+EB67 +#define ICON_VS_TELESCOPE "\xee\xad\xa8" // U+EB68 +#define ICON_VS_TEXT_SIZE "\xee\xad\xa9" // U+EB69 +#define ICON_VS_THREE_BARS "\xee\xad\xaa" // U+EB6A +#define ICON_VS_THUMBSDOWN "\xee\xad\xab" // U+EB6B +#define ICON_VS_THUMBSUP "\xee\xad\xac" // U+EB6C +#define ICON_VS_TOOLS "\xee\xad\xad" // U+EB6D +#define ICON_VS_TRIANGLE_DOWN "\xee\xad\xae" // U+EB6E +#define ICON_VS_TRIANGLE_LEFT "\xee\xad\xaf" // U+EB6F +#define ICON_VS_TRIANGLE_RIGHT "\xee\xad\xb0" // U+EB70 +#define ICON_VS_TRIANGLE_UP "\xee\xad\xb1" // U+EB71 +#define ICON_VS_TWITTER "\xee\xad\xb2" // U+EB72 +#define ICON_VS_UNFOLD "\xee\xad\xb3" // U+EB73 +#define ICON_VS_UNLOCK "\xee\xad\xb4" // U+EB74 +#define ICON_VS_UNMUTE "\xee\xad\xb5" // U+EB75 +#define ICON_VS_UNVERIFIED "\xee\xad\xb6" // U+EB76 +#define ICON_VS_VERIFIED "\xee\xad\xb7" // U+EB77 +#define ICON_VS_VERSIONS "\xee\xad\xb8" // U+EB78 +#define ICON_VS_VM_ACTIVE "\xee\xad\xb9" // U+EB79 +#define ICON_VS_VM_OUTLINE "\xee\xad\xba" // U+EB7A +#define ICON_VS_VM_RUNNING "\xee\xad\xbb" // U+EB7B +#define ICON_VS_WATCH "\xee\xad\xbc" // U+EB7C +#define ICON_VS_WHITESPACE "\xee\xad\xbd" // U+EB7D +#define ICON_VS_WHOLE_WORD "\xee\xad\xbe" // U+EB7E +#define ICON_VS_WINDOW "\xee\xad\xbf" // U+EB7F +#define ICON_VS_WORD_WRAP "\xee\xae\x80" // U+EB80 +#define ICON_VS_ZOOM_IN "\xee\xae\x81" // U+EB81 +#define ICON_VS_ZOOM_OUT "\xee\xae\x82" // U+EB82 +#define ICON_VS_LIST_FILTER "\xee\xae\x83" // U+EB83 +#define ICON_VS_LIST_FLAT "\xee\xae\x84" // U+EB84 +#define ICON_VS_LIST_SELECTION "\xee\xae\x85" // U+EB85 +#define ICON_VS_LIST_TREE "\xee\xae\x86" // U+EB86 +#define ICON_VS_DEBUG_BREAKPOINT_FUNCTION_UNVERIFIED "\xee\xae\x87" // U+EB87 +#define ICON_VS_DEBUG_BREAKPOINT_FUNCTION "\xee\xae\x88" // U+EB88 +#define ICON_VS_DEBUG_STACKFRAME_ACTIVE "\xee\xae\x89" // U+EB89 +#define ICON_VS_CIRCLE_SMALL_FILLED "\xee\xae\x8a" // U+EB8A +#define ICON_VS_DEBUG_STACKFRAME "\xee\xae\x8b" // U+EB8B +#define ICON_VS_DEBUG_BREAKPOINT_UNSUPPORTED "\xee\xae\x8c" // U+EB8C +#define ICON_VS_SYMBOL_STRING "\xee\xae\x8d" // U+EB8D +#define ICON_VS_DEBUG_REVERSE_CONTINUE "\xee\xae\x8e" // U+EB8E +#define ICON_VS_DEBUG_STEP_BACK "\xee\xae\x8f" // U+EB8F +#define ICON_VS_DEBUG_RESTART_FRAME "\xee\xae\x90" // U+EB90 +#define ICON_VS_DEBUG_ALT "\xee\xae\x91" // U+EB91 +#define ICON_VS_CALL_INCOMING "\xee\xae\x92" // U+EB92 +#define ICON_VS_CALL_OUTGOING "\xee\xae\x93" // U+EB93 +#define ICON_VS_MENU "\xee\xae\x94" // U+EB94 +#define ICON_VS_EXPAND_ALL "\xee\xae\x95" // U+EB95 +#define ICON_VS_FEEDBACK "\xee\xae\x96" // U+EB96 +#define ICON_VS_GROUP_BY_REF_TYPE "\xee\xae\x97" // U+EB97 +#define ICON_VS_UNGROUP_BY_REF_TYPE "\xee\xae\x98" // U+EB98 +#define ICON_VS_ACCOUNT "\xee\xae\x99" // U+EB99 +#define ICON_VS_BELL_DOT "\xee\xae\x9a" // U+EB9A +#define ICON_VS_DEBUG_CONSOLE "\xee\xae\x9b" // U+EB9B +#define ICON_VS_LIBRARY "\xee\xae\x9c" // U+EB9C +#define ICON_VS_OUTPUT "\xee\xae\x9d" // U+EB9D +#define ICON_VS_RUN_ALL "\xee\xae\x9e" // U+EB9E +#define ICON_VS_SYNC_IGNORED "\xee\xae\x9f" // U+EB9F +#define ICON_VS_PINNED "\xee\xae\xa0" // U+EBA0 +#define ICON_VS_GITHUB_INVERTED "\xee\xae\xa1" // U+EBA1 +#define ICON_VS_SERVER_PROCESS "\xee\xae\xa2" // U+EBA2 +#define ICON_VS_SERVER_ENVIRONMENT "\xee\xae\xa3" // U+EBA3 +#define ICON_VS_PASS "\xee\xae\xa4" // U+EBA4 +#define ICON_VS_STOP_CIRCLE "\xee\xae\xa5" // U+EBA5 +#define ICON_VS_PLAY_CIRCLE "\xee\xae\xa6" // U+EBA6 +#define ICON_VS_RECORD "\xee\xae\xa7" // U+EBA7 +#define ICON_VS_DEBUG_ALT_SMALL "\xee\xae\xa8" // U+EBA8 +#define ICON_VS_VM_CONNECT "\xee\xae\xa9" // U+EBA9 +#define ICON_VS_CLOUD "\xee\xae\xaa" // U+EBAA +#define ICON_VS_MERGE "\xee\xae\xab" // U+EBAB +#define ICON_VS_EXPORT "\xee\xae\xac" // U+EBAC +#define ICON_VS_GRAPH_LEFT "\xee\xae\xad" // U+EBAD +#define ICON_VS_MAGNET "\xee\xae\xae" // U+EBAE +#define ICON_VS_NOTEBOOK "\xee\xae\xaf" // U+EBAF +#define ICON_VS_REDO "\xee\xae\xb0" // U+EBB0 +#define ICON_VS_CHECK_ALL "\xee\xae\xb1" // U+EBB1 +#define ICON_VS_PINNED_DIRTY "\xee\xae\xb2" // U+EBB2 +#define ICON_VS_PASS_FILLED "\xee\xae\xb3" // U+EBB3 +#define ICON_VS_CIRCLE_LARGE_FILLED "\xee\xae\xb4" // U+EBB4 +#define ICON_VS_CIRCLE_LARGE "\xee\xae\xb5" // U+EBB5 +#define ICON_VS_COMBINE "\xee\xae\xb6" // U+EBB6 +#define ICON_VS_TABLE "\xee\xae\xb7" // U+EBB7 +#define ICON_VS_VARIABLE_GROUP "\xee\xae\xb8" // U+EBB8 +#define ICON_VS_TYPE_HIERARCHY "\xee\xae\xb9" // U+EBB9 +#define ICON_VS_TYPE_HIERARCHY_SUB "\xee\xae\xba" // U+EBBA +#define ICON_VS_TYPE_HIERARCHY_SUPER "\xee\xae\xbb" // U+EBBB +#define ICON_VS_GIT_PULL_REQUEST_CREATE "\xee\xae\xbc" // U+EBBC +#define ICON_VS_RUN_ABOVE "\xee\xae\xbd" // U+EBBD +#define ICON_VS_RUN_BELOW "\xee\xae\xbe" // U+EBBE +#define ICON_VS_NOTEBOOK_TEMPLATE "\xee\xae\xbf" // U+EBBF +#define ICON_VS_DEBUG_RERUN "\xee\xaf\x80" // U+EBC0 +#define ICON_VS_WORKSPACE_TRUSTED "\xee\xaf\x81" // U+EBC1 +#define ICON_VS_WORKSPACE_UNTRUSTED "\xee\xaf\x82" // U+EBC2 +#define ICON_VS_WORKSPACE_UNKNOWN "\xee\xaf\x83" // U+EBC3 +#define ICON_VS_TERMINAL_CMD "\xee\xaf\x84" // U+EBC4 +#define ICON_VS_TERMINAL_DEBIAN "\xee\xaf\x85" // U+EBC5 +#define ICON_VS_TERMINAL_LINUX "\xee\xaf\x86" // U+EBC6 +#define ICON_VS_TERMINAL_POWERSHELL "\xee\xaf\x87" // U+EBC7 +#define ICON_VS_TERMINAL_TMUX "\xee\xaf\x88" // U+EBC8 +#define ICON_VS_TERMINAL_UBUNTU "\xee\xaf\x89" // U+EBC9 +#define ICON_VS_TERMINAL_BASH "\xee\xaf\x8a" // U+EBCA +#define ICON_VS_ARROW_SWAP "\xee\xaf\x8b" // U+EBCB +#define ICON_VS_COPY "\xee\xaf\x8c" // U+EBCC +#define ICON_VS_PERSON_ADD "\xee\xaf\x8d" // U+EBCD +#define ICON_VS_FILTER_FILLED "\xee\xaf\x8e" // U+EBCE +#define ICON_VS_WAND "\xee\xaf\x8f" // U+EBCF +#define ICON_VS_DEBUG_LINE_BY_LINE "\xee\xaf\x90" // U+EBD0 +#define ICON_VS_INSPECT "\xee\xaf\x91" // U+EBD1 +#define ICON_VS_LAYERS "\xee\xaf\x92" // U+EBD2 +#define ICON_VS_LAYERS_DOT "\xee\xaf\x93" // U+EBD3 +#define ICON_VS_LAYERS_ACTIVE "\xee\xaf\x94" // U+EBD4 +#define ICON_VS_COMPASS "\xee\xaf\x95" // U+EBD5 +#define ICON_VS_COMPASS_DOT "\xee\xaf\x96" // U+EBD6 +#define ICON_VS_COMPASS_ACTIVE "\xee\xaf\x97" // U+EBD7 +#define ICON_VS_AZURE "\xee\xaf\x98" // U+EBD8 +#define ICON_VS_ISSUE_DRAFT "\xee\xaf\x99" // U+EBD9 +#define ICON_VS_GIT_PULL_REQUEST_CLOSED "\xee\xaf\x9a" // U+EBDA +#define ICON_VS_GIT_PULL_REQUEST_DRAFT "\xee\xaf\x9b" // U+EBDB +#define ICON_VS_DEBUG_ALL "\xee\xaf\x9c" // U+EBDC +#define ICON_VS_DEBUG_COVERAGE "\xee\xaf\x9d" // U+EBDD +#define ICON_VS_RUN_ERRORS "\xee\xaf\x9e" // U+EBDE +#define ICON_VS_FOLDER_LIBRARY "\xee\xaf\x9f" // U+EBDF +#define ICON_VS_DEBUG_CONTINUE_SMALL "\xee\xaf\xa0" // U+EBE0 +#define ICON_VS_BEAKER_STOP "\xee\xaf\xa1" // U+EBE1 +#define ICON_VS_GRAPH_LINE "\xee\xaf\xa2" // U+EBE2 +#define ICON_VS_GRAPH_SCATTER "\xee\xaf\xa3" // U+EBE3 +#define ICON_VS_PIE_CHART "\xee\xaf\xa4" // U+EBE4 +#define ICON_VS_BRACKET_DOT "\xee\xaf\xa5" // U+EBE5 +#define ICON_VS_BRACKET_ERROR "\xee\xaf\xa6" // U+EBE6 +#define ICON_VS_LOCK_SMALL "\xee\xaf\xa7" // U+EBE7 +#define ICON_VS_AZURE_DEVOPS "\xee\xaf\xa8" // U+EBE8 +#define ICON_VS_VERIFIED_FILLED "\xee\xaf\xa9" // U+EBE9 +#define ICON_VS_NEWLINE "\xee\xaf\xaa" // U+EBEA +#define ICON_VS_LAYOUT "\xee\xaf\xab" // U+EBEB +#define ICON_VS_LAYOUT_ACTIVITYBAR_LEFT "\xee\xaf\xac" // U+EBEC +#define ICON_VS_LAYOUT_ACTIVITYBAR_RIGHT "\xee\xaf\xad" // U+EBED +#define ICON_VS_LAYOUT_PANEL_LEFT "\xee\xaf\xae" // U+EBEE +#define ICON_VS_LAYOUT_PANEL_CENTER "\xee\xaf\xaf" // U+EBEF +#define ICON_VS_LAYOUT_PANEL_JUSTIFY "\xee\xaf\xb0" // U+EBF0 +#define ICON_VS_LAYOUT_PANEL_RIGHT "\xee\xaf\xb1" // U+EBF1 +#define ICON_VS_LAYOUT_PANEL "\xee\xaf\xb2" // U+EBF2 +#define ICON_VS_LAYOUT_SIDEBAR_LEFT "\xee\xaf\xb3" // U+EBF3 +#define ICON_VS_LAYOUT_SIDEBAR_RIGHT "\xee\xaf\xb4" // U+EBF4 +#define ICON_VS_LAYOUT_STATUSBAR "\xee\xaf\xb5" // U+EBF5 +#define ICON_VS_LAYOUT_MENUBAR "\xee\xaf\xb6" // U+EBF6 +#define ICON_VS_LAYOUT_CENTERED "\xee\xaf\xb7" // U+EBF7 +#define ICON_VS_TARGET "\xee\xaf\xb8" // U+EBF8 +#define ICON_VS_INDENT "\xee\xaf\xb9" // U+EBF9 +#define ICON_VS_RECORD_SMALL "\xee\xaf\xba" // U+EBFA +#define ICON_VS_ERROR_SMALL "\xee\xaf\xbb" // U+EBFB +#define ICON_VS_ARROW_CIRCLE_DOWN "\xee\xaf\xbc" // U+EBFC +#define ICON_VS_ARROW_CIRCLE_LEFT "\xee\xaf\xbd" // U+EBFD +#define ICON_VS_ARROW_CIRCLE_RIGHT "\xee\xaf\xbe" // U+EBFE +#define ICON_VS_ARROW_CIRCLE_UP "\xee\xaf\xbf" // U+EBFF +#define ICON_VS_LAYOUT_SIDEBAR_RIGHT_OFF "\xee\xb0\x80" // U+EC00 +#define ICON_VS_LAYOUT_PANEL_OFF "\xee\xb0\x81" // U+EC01 +#define ICON_VS_LAYOUT_SIDEBAR_LEFT_OFF "\xee\xb0\x82" // U+EC02 +#define ICON_VS_BLANK "\xee\xb0\x83" // U+EC03 +#define ICON_VS_HEART_FILLED "\xee\xb0\x84" // U+EC04 +#define ICON_VS_MAP "\xee\xb0\x85" // U+EC05 +#define ICON_VS_MAP_FILLED "\xee\xb0\x86" // U+EC06 +#define ICON_VS_CIRCLE_SMALL "\xee\xb0\x87" // U+EC07 +#define ICON_VS_BELL_SLASH "\xee\xb0\x88" // U+EC08 +#define ICON_VS_BELL_SLASH_DOT "\xee\xb0\x89" // U+EC09 +#define ICON_VS_COMMENT_UNRESOLVED "\xee\xb0\x8a" // U+EC0A +#define ICON_VS_GIT_PULL_REQUEST_GO_TO_CHANGES "\xee\xb0\x8b" // U+EC0B +#define ICON_VS_GIT_PULL_REQUEST_NEW_CHANGES "\xee\xb0\x8c" // U+EC0C +#define ICON_VS_SEARCH_FUZZY "\xee\xb0\x8d" // U+EC0D +#define ICON_VS_COMMENT_DRAFT "\xee\xb0\x8e" // U+EC0E +#define ICON_VS_SEND "\xee\xb0\x8f" // U+EC0F +#define ICON_VS_SPARKLE "\xee\xb0\x90" // U+EC10 +#define ICON_VS_INSERT "\xee\xb0\x91" // U+EC11 +#define ICON_VS_MIC "\xee\xb0\x92" // U+EC12 +#define ICON_VS_THUMBSDOWN_FILLED "\xee\xb0\x93" // U+EC13 +#define ICON_VS_THUMBSUP_FILLED "\xee\xb0\x94" // U+EC14 +#define ICON_VS_COFFEE "\xee\xb0\x95" // U+EC15 +#define ICON_VS_SNAKE "\xee\xb0\x96" // U+EC16 +#define ICON_VS_GAME "\xee\xb0\x97" // U+EC17 +#define ICON_VS_VR "\xee\xb0\x98" // U+EC18 +#define ICON_VS_CHIP "\xee\xb0\x99" // U+EC19 +#define ICON_VS_PIANO "\xee\xb0\x9a" // U+EC1A +#define ICON_VS_MUSIC "\xee\xb0\x9b" // U+EC1B +#define ICON_VS_MIC_FILLED "\xee\xb0\x9c" // U+EC1C +#define ICON_VS_REPO_FETCH "\xee\xb0\x9d" // U+EC1D +#define ICON_VS_COPILOT "\xee\xb0\x9e" // U+EC1E +#define ICON_VS_LIGHTBULB_SPARKLE "\xee\xb0\x9f" // U+EC1F +#define ICON_VS_ROBOT "\xee\xb0\xa0" // U+EC20 +#define ICON_VS_SPARKLE_FILLED "\xee\xb0\xa1" // U+EC21 +#define ICON_VS_DIFF_MULTIPLE "\xee\xb0\xa3" // U+EC23 +#define ICON_VS_SURROUND_WITH "\xee\xb0\xa4" // U+EC24 +#define ICON_VS_SHARE "\xee\xb0\xa5" // U+EC25 +#define ICON_VS_GIT_STASH "\xee\xb0\xa6" // U+EC26 +#define ICON_VS_GIT_STASH_APPLY "\xee\xb0\xa7" // U+EC27 +#define ICON_VS_GIT_STASH_POP "\xee\xb0\xa8" // U+EC28 +#define ICON_VS_VSCODE "\xee\xb0\xa9" // U+EC29 +#define ICON_VS_VSCODE_INSIDERS "\xee\xb0\xaa" // U+EC2A +#define ICON_VS_CODE_OSS "\xee\xb0\xab" // U+EC2B +#define ICON_VS_RUN_COVERAGE "\xee\xb0\xac" // U+EC2C +#define ICON_VS_RUN_ALL_COVERAGE "\xee\xb0\xad" // U+EC2D +#define ICON_VS_COVERAGE "\xee\xb0\xae" // U+EC2E +#define ICON_VS_GITHUB_PROJECT "\xee\xb0\xaf" // U+EC2F +#define ICON_VS_MAP_VERTICAL "\xee\xb0\xb0" // U+EC30 +#define ICON_VS_MAP_VERTICAL_FILLED "\xee\xb0\xb1" // U+EC31 +#define ICON_VS_GO_TO_SEARCH "\xee\xb0\xb2" // U+EC32 +#define ICON_VS_PERCENTAGE "\xee\xb0\xb3" // U+EC33 +#define ICON_VS_ATTACH "\xee\xb0\xb4" // U+EC34 +#define ICON_VS_GO_TO_EDITING_SESSION "\xee\xb0\xb5" // U+EC35 +#define ICON_VS_EDIT_SESSION "\xee\xb0\xb6" // U+EC36 +#define ICON_VS_CODE_REVIEW "\xee\xb0\xb7" // U+EC37 +#define ICON_VS_COPILOT_WARNING "\xee\xb0\xb8" // U+EC38 +#define ICON_VS_PYTHON "\xee\xb0\xb9" // U+EC39 +#define ICON_VS_COPILOT_LARGE "\xee\xb0\xba" // U+EC3A +#define ICON_VS_COPILOT_WARNING_LARGE "\xee\xb0\xbb" // U+EC3B +#define ICON_VS_KEYBOARD_TAB "\xee\xb0\xbc" // U+EC3C +#define ICON_VS_COPILOT_BLOCKED "\xee\xb0\xbd" // U+EC3D +#define ICON_VS_COPILOT_NOT_CONNECTED "\xee\xb0\xbe" // U+EC3E +#define ICON_VS_FLAG "\xee\xb0\xbf" // U+EC3F +#define ICON_VS_LIGHTBULB_EMPTY "\xee\xb1\x80" // U+EC40 +#define ICON_VS_SYMBOL_METHOD_ARROW "\xee\xb1\x81" // U+EC41 +#define ICON_VS_COPILOT_UNAVAILABLE "\xee\xb1\x82" // U+EC42 +#define ICON_VS_REPO_PINNED "\xee\xb1\x83" // U+EC43 +#define ICON_VS_KEYBOARD_TAB_ABOVE "\xee\xb1\x84" // U+EC44 +#define ICON_VS_KEYBOARD_TAB_BELOW "\xee\xb1\x85" // U+EC45 +#define ICON_VS_GIT_PULL_REQUEST_DONE "\xee\xb1\x86" // U+EC46 +#define ICON_VS_MCP "\xee\xb1\x87" // U+EC47 +#define ICON_VS_EXTENSIONS_LARGE "\xee\xb1\x88" // U+EC48 +#define ICON_VS_LAYOUT_PANEL_DOCK "\xee\xb1\x89" // U+EC49 +#define ICON_VS_LAYOUT_SIDEBAR_LEFT_DOCK "\xee\xb1\x8a" // U+EC4A +#define ICON_VS_LAYOUT_SIDEBAR_RIGHT_DOCK "\xee\xb1\x8b" // U+EC4B +#define ICON_VS_COPILOT_IN_PROGRESS "\xee\xb1\x8c" // U+EC4C +#define ICON_VS_COPILOT_ERROR "\xee\xb1\x8d" // U+EC4D +#define ICON_VS_COPILOT_SUCCESS "\xee\xb1\x8e" // U+EC4E +#define ICON_VS_CHAT_SPARKLE "\xee\xb1\x8f" // U+EC4F +#define ICON_VS_SEARCH_SPARKLE "\xee\xb1\x90" // U+EC50 +#define ICON_VS_EDIT_SPARKLE "\xee\xb1\x91" // U+EC51 +#define ICON_VS_COPILOT_SNOOZE "\xee\xb1\x92" // U+EC52 +#define ICON_VS_SEND_TO_REMOTE_AGENT "\xee\xb1\x93" // U+EC53 +#define ICON_VS_GIT_FETCH "\xef\x84\x81" // U+F101 diff --git a/plugins/fonts/romfs/fonts/codicons.ttf b/plugins/fonts/romfs/fonts/codicons.ttf index 440fb22f5910c600bfb2a71fab60fa4290e635de..a66b2076e5f60d1c3a923cd8e9afe57c0e43f001 100644 GIT binary patch delta 24116 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 diff --git a/plugins/hashes/source/content/views/view_hashes.cpp b/plugins/hashes/source/content/views/view_hashes.cpp index 38f508156..a67001695 100644 --- a/plugins/hashes/source/content/views/view_hashes.cpp +++ b/plugins/hashes/source/content/views/view_hashes.cpp @@ -258,7 +258,7 @@ namespace hex::plugin::hashes { PopupTextHash::open(function); } ImGui::SameLine(); - if (ImGuiExt::IconButton(ICON_VS_X, ImGui::GetStyleColorVec4(ImGuiCol_Text))) { + if (ImGuiExt::IconButton(ICON_VS_CHROME_CLOSE, ImGui::GetStyleColorVec4(ImGuiCol_Text))) { indexToRemove = i; } diff --git a/plugins/ui/source/ui/pattern_drawer.cpp b/plugins/ui/source/ui/pattern_drawer.cpp index 1628c3756..d5cee1721 100644 --- a/plugins/ui/source/ui/pattern_drawer.cpp +++ b/plugins/ui/source/ui/pattern_drawer.cpp @@ -310,12 +310,12 @@ namespace hex::ui { ImGui::PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2(0, 0)); if (m_favorites.contains(m_currPatternPath)) { - if (ImGuiExt::DimmedIconButton(ICON_VS_STAR_DELETE, ImGui::GetStyleColorVec4(ImGuiCol_PlotHistogram), {}, { 1_scaled, 0 })) { + if (ImGuiExt::DimmedIconButton(ICON_VS_STAR_FULL, ImGui::GetStyleColorVec4(ImGuiCol_PlotHistogram), {}, { 1_scaled, 0 })) { m_favorites.erase(m_currPatternPath); } } else { - if (ImGuiExt::DimmedIconButton(ICON_VS_STAR_ADD, ImGui::GetStyleColorVec4(ImGuiCol_TextDisabled), {}, { 1_scaled, 0 })) { + if (ImGuiExt::DimmedIconButton(ICON_VS_STAR_EMPTY, ImGui::GetStyleColorVec4(ImGuiCol_TextDisabled), {}, { 1_scaled, 0 })) { m_favorites.insert({ m_currPatternPath, pattern.clone() }); } } @@ -359,7 +359,7 @@ namespace hex::ui { ImGui::PushStyleVar(ImGuiStyleVar_ButtonTextAlign, ImVec2(0, 0.5F)); bool shouldReset = false; - if (ImGui::Button(hex::format(" {} {}", ICON_VS_EYE_WATCH, value).c_str(), ImVec2(width, ImGui::GetTextLineHeight()))) { + if (ImGui::Button(hex::format(" {} {}", ICON_VS_EYE, value).c_str(), ImVec2(width, ImGui::GetTextLineHeight()))) { const auto *previousPattern = m_currVisualizedPattern; m_currVisualizedPattern = &pattern; auto lastVisualizerError = m_visualizerDrawer.getLastVisualizerError(); diff --git a/plugins/visualizers/source/content/pl_visualizers/3d_model.cpp b/plugins/visualizers/source/content/pl_visualizers/3d_model.cpp index 096783e79..1932b8c27 100644 --- a/plugins/visualizers/source/content/pl_visualizers/3d_model.cpp +++ b/plugins/visualizers/source/content/pl_visualizers/3d_model.cpp @@ -530,7 +530,7 @@ namespace hex::plugin::visualizers { // Draw grid toggle { ImGui::PushID(2); - if (ImGuiExt::DimmedIconToggle(s_isPerspective ? ICON_BI_GRID : ICON_VS_SYMBOL_NUMBER, &s_drawGrid)) + if (ImGuiExt::DimmedIconToggle(s_isPerspective ? ICON_BI_GRID : ICON_VS_SYMBOL_NUMERIC, &s_drawGrid)) s_shouldReset = true; ImGui::PopID(); }