├── .clang-format ├── .config └── dotnet-tools.json ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_Report.yml │ ├── Documentation_Issue.md │ ├── Feature_Request.md │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── spelling │ │ ├── README.md │ │ ├── advice.md │ │ ├── allow │ │ ├── README.md │ │ ├── allow.txt │ │ ├── apis.txt │ │ ├── chinese.txt │ │ ├── colors.txt │ │ ├── fonts.txt │ │ ├── japanese.txt │ │ ├── math.txt │ │ ├── microsoft.txt │ │ └── names.txt │ │ ├── candidate.patterns │ │ ├── excludes.txt │ │ ├── expect │ │ ├── 04cdb9b77d6827c0202f51acd4205b017015bfff.txt │ │ ├── README.md │ │ ├── alphabet.txt │ │ ├── expect.txt │ │ └── web.txt │ │ ├── line_forbidden.patterns │ │ ├── patterns │ │ ├── README.md │ │ └── patterns.txt │ │ └── reject.txt ├── linters │ └── .markdown-lint.yml ├── policies │ └── resourceManagement.yml └── workflows │ ├── addToProject.yml │ ├── similarIssues.yml │ ├── spelling2.yml │ └── winget.yml ├── .gitignore ├── .gitmodules ├── .nuget └── packages.config ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vsconfig ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE.md ├── NuGet.Config ├── OpenConsole.sln ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── Scratch.sln ├── XamlStyler.json ├── common.openconsole.props ├── consolegit2gitfilters.json ├── custom.props ├── dep ├── CLI11 │ ├── CLI11.hpp │ ├── README.md │ └── cgmanifest.json ├── Console │ ├── ConIoSrv.h │ ├── conapi.h │ ├── condrv.h │ ├── conmsgl1.h │ ├── conmsgl2.h │ ├── conmsgl3.h │ ├── csrmsg.h │ ├── ntcon.h │ ├── ntcsrdll.h │ ├── ntcsrmsg.h │ ├── ntlpcapi.h │ └── winconp.h ├── NT │ └── ntioapi_x.h ├── Win32K │ └── winuserp.h ├── WinAppDriver │ ├── EULA.rtf │ ├── Microsoft.Win32.Primitives.dll │ ├── Microsoft.Win32.Registry.dll │ ├── MitaBroker.dll │ ├── MitaLite.Foundation.dll │ ├── MitaLite.Localization.dll │ ├── MitaLite.UIAutomationAdapter.dll │ ├── MitaLite.UIAutomationClient.dll │ ├── Newtonsoft.Json.dll │ ├── Readme.txt │ ├── System.Diagnostics.Process.dll │ ├── System.Threading.Thread.dll │ ├── WinAppDriver.exe │ ├── WinAppDriverCore.dll │ └── cpprest140_2_8.dll ├── jsoncpp │ ├── README.md │ ├── cgmanifest.json │ ├── json │ │ ├── json-forwards.h │ │ └── json.h │ └── jsoncpp.cpp ├── nuget │ ├── nuget.exe │ └── packages.config └── telemetry │ └── ProjectTelemetry.h ├── dirs ├── doc ├── AddASetting.md ├── COOKED_READ_DATA.md ├── ConsoleCtrlEvent.md ├── ConsoleHostSettings.md ├── Debugging.md ├── EXCEPTIONS.md ├── Niksa.md ├── ORGANIZATION.md ├── STYLE.md ├── TAEF.md ├── UniversalTest.md ├── WIL.md ├── WindowsTestPasses.md ├── bot.md ├── building.md ├── cascadia │ ├── AddASetting.md │ ├── Json-Utility-API.md │ ├── SettingsSchema.md │ ├── Unittesting-CppWinRT-Xaml.md │ └── profiles.schema.json ├── color_nudging.html ├── creating_a_new_project.md ├── feature_flags.md ├── fuzzing.md ├── images │ ├── new-issue-template.png │ ├── panes.png │ ├── solution-platform.png │ ├── terminal-0.6.png │ └── terminal-mockup.png ├── reference │ ├── Build-SupportedSequenceIndex.ps1 │ ├── UTF8-torture-test.txt │ ├── customtextlayout.xlsx │ ├── master-sequence-list.csv │ ├── solution-dependencygraph.png │ └── windows-terminal-logo.ans ├── roadmap-2022.md ├── roadmap-2023.md ├── specs │ ├── #1043 - Set the initial position of the Terminal │ │ └── spec.md │ ├── #11000 - Marks │ │ ├── Shell-Integration-Marks.md │ │ ├── ftcs-diagram.png │ │ └── vscode-shell-integration-gutter-mark.png │ ├── #1142 - Keybinding Arguments.md │ ├── #1235 - Azure cloud shell connector │ │ ├── images │ │ │ ├── azProf.png │ │ │ └── solDesign.png │ │ └── spec.md │ ├── #12570 - Show Hide operations on GetConsoleWindow via PTY.md │ ├── #1337 - Per-Profile Tab Colors │ │ ├── #1337 - Per-Profile Tab Colors.md │ │ └── profile-tabColor-000.gif │ ├── #1502 - Advanced Tab Switcher │ │ ├── img │ │ │ ├── CommandPaletteExample.png │ │ │ ├── VSCodeMinimumTabSwitcherSize.png │ │ │ ├── VSCodeTabSwitcher.png │ │ │ ├── VSMinimumSize.png │ │ │ ├── VSMinimumSizeWithTabSwitcher.png │ │ │ ├── VSTabSwitcher.png │ │ │ └── tmuxPaneSwitching.png │ │ └── spec.md │ ├── #1564 - Settings UI │ │ ├── add-new-profile.png │ │ ├── appearance.png │ │ ├── cascading-settings.md │ │ ├── copy-settings-1.png │ │ ├── copy-settings-2.png │ │ ├── design.md │ │ ├── inheritance-dropdown.png │ │ ├── inheritance-locks.png │ │ ├── inheritance-text.png │ │ ├── keyboard-modal-add.png │ │ ├── keyboard-modal-args.png │ │ ├── keyboard-modal.png │ │ ├── keyboard.png │ │ ├── navigation-2.png │ │ ├── navigation.png │ │ └── spec.md │ ├── #1571 - New Tab Menu Customization │ │ ├── #1571 - New Tab Menu Customization.md │ │ └── Menu-Customization-000.png │ ├── #1595 - Suggestions UI │ │ ├── 3121-suggestion-menu-2023-000.gif │ │ ├── Suggestions-UI.md │ │ ├── command-history-suggestions.gif │ │ ├── shell-autocomplete-july-2022-000.gif │ │ ├── tasks-suggestions.gif │ │ └── vscode-shell-suggestions.gif │ ├── #1790 - Font features and axes-spec.md │ ├── #2046 - Command Palette.md │ ├── #2046 - Unified keybindings and commands, and synthesized action names.md │ ├── #2325 - Default Profile Settings.md │ ├── #2557 - Settings Keybinding.md │ ├── #2563 - closeOnExit and TerminalConnection evolution.md │ ├── #2871 - Pane Navigation │ │ └── #2871 - Pane Navigation.md │ ├── #3062 - Appearance configuration object for profiles.md │ ├── #4066 - Theme-controlled color scheme switch.md │ ├── #4191 - Formatted Copy │ │ ├── spec.md │ │ └── twitter-poll.png │ ├── #492 - Default Terminal │ │ └── spec.md │ ├── #4993 - Keyboard Selection │ │ ├── Keyboard-Selection.md │ │ └── images │ │ │ ├── CopyModeFlowchart.png │ │ │ ├── CopyModeFlowchart.vsdx │ │ │ ├── Half-Y-Beam.png │ │ │ ├── Split-Y-Beam.png │ │ │ └── Y-Beam.png │ ├── #4999 - Improved keyboard handling in Conpty.md │ ├── #5000 - Process Model 2.0 │ │ ├── #1032 - Elevation Quality of Life Improvements.md │ │ ├── #4472 - Windows Terminal Session Management.md │ │ ├── #5000 - Process Model 2.0.md │ │ ├── UAC-shield-in-titlebar.png │ │ ├── auto-glom-wt-exe.png │ │ ├── drop-tab-on-existing-window.png │ │ ├── figure-001.png │ │ ├── figure-002.png │ │ ├── figure-003.png │ │ ├── mixed-elevation.png │ │ ├── single-instance-mode-cwd.png │ │ ├── tear-out-tab.png │ │ └── wt-session-0.png │ ├── #532 - Panes and Split Windows.md │ ├── #597 - Tab Sizing.md │ ├── #605 - Search │ │ ├── images │ │ │ ├── SearchBoxControl.png │ │ │ ├── SearchBoxControlNoEnoughWidth.png │ │ │ └── SearchBoxUpSelected.png │ │ └── spec.md │ ├── #607 - Commandline Arguments for the Windows Terminal.md │ ├── #653 - Quake Mode │ │ ├── #653 - Quake Mode.md │ │ └── tray-icon-000.png │ ├── #6899 - Action IDs │ │ ├── #6899 - Action IDs.md │ │ ├── data-mockup-002.png │ │ ├── data-mockup-actions-and-ids-and-keys.png │ │ ├── data-mockup-actions-and-ids.png │ │ ├── data-mockup-actions-ids-keys-maps.png │ │ ├── data-mockup-actions.png │ │ └── data-mockup.png │ ├── #6900 - Actions Page │ │ ├── add-click.png │ │ ├── add-keys.png │ │ ├── edit-click.png │ │ ├── edit-keys.png │ │ └── spec.md │ ├── #7335 - Console Allocation Policy.md │ ├── #754 - Cascading Default Settings.md │ ├── #8324 - Application State (TSM).md │ ├── #885 - Terminal Settings Model │ │ ├── #885 - Terminal Settings Model.md │ │ ├── Actions Addendum.md │ │ ├── Inheritance-DAG.png │ │ └── Inheritance-DAG.vsdx │ ├── #976 - VT52 escape sequences.md │ ├── #980 - SnapOnOutput.md │ ├── Keybindings-spec.md │ ├── Proto extensions-spec.md │ ├── TerminalSettings-spec.md │ ├── drafts │ │ ├── #1256 - Tab tearoff.md │ │ ├── #2634 - Broadcast Input │ │ │ ├── #2634 - Broadcast Input.md │ │ │ ├── broadcast-input-borders.gif │ │ │ └── broadcast-segoe-icon.png │ │ ├── #3327 - Application Theming │ │ │ ├── #10509 - Mica.md │ │ │ ├── #3327 - Application Theming.md │ │ │ ├── AcrylicInTitlebar.png │ │ │ ├── AcrylicTerminalBackgroundInTitlebar.png │ │ │ ├── Tab-Matches-Terminal-Color-000.png │ │ │ ├── mica-in-control-000.png │ │ │ ├── tab-buttons-000.png │ │ │ └── whole-window-background-000.png │ │ ├── #642 - Buffer Exporting and Logging │ │ │ ├── #642 - Buffer Exporting and Logging.md │ │ │ ├── ConEmu-logging-settings.png │ │ │ ├── PuTTY-logging-settings.png │ │ │ ├── SecureCRT-logging-settings.png │ │ │ └── securecrt-context-menu.png │ │ ├── #997 Non-Terminal-Panes.md │ │ └── 576-ProfilesJumplistSpec.md │ ├── portable-mode-spec.md │ ├── settings-spec-template.md │ └── spec-template.md ├── submitting_code.md ├── terminal-a11y-2023.md ├── terminal-v1-roadmap.md ├── terminal-v2-roadmap.md ├── user-docs │ ├── ThirdPartyToolProfiles.md │ ├── UsingCommandlineArguments.md │ ├── UsingJsonSettings.md │ └── index.md └── virtual-dtors.md ├── oss ├── README.md ├── chromium │ ├── LICENSE │ ├── MAINTAINER_README.md │ ├── base │ │ └── numerics │ │ │ ├── BUILD.gn │ │ │ ├── DEPS │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── checked_math.h │ │ │ ├── checked_math_impl.h │ │ │ ├── clamped_math.h │ │ │ ├── clamped_math_impl.h │ │ │ ├── math_constants.h │ │ │ ├── ranges.h │ │ │ ├── safe_conversions.h │ │ │ ├── safe_conversions_arm_impl.h │ │ │ ├── safe_conversions_impl.h │ │ │ ├── safe_math.h │ │ │ ├── safe_math_arm_impl.h │ │ │ ├── safe_math_clang_gcc_impl.h │ │ │ └── safe_math_shared_impl.h │ └── cgmanifest.json ├── dynamic_bitset │ ├── LICENSE │ ├── MAINTAINER_README.md │ ├── cgmanifest.json │ └── dynamic_bitset.hpp ├── fmt │ ├── LICENSE.rst │ ├── MAINTAINER_README.md │ ├── cgmanifest.json │ ├── include │ │ └── fmt │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── locale.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── posix.h │ │ │ ├── printf.h │ │ │ └── ranges.h │ └── src │ │ ├── format.cc │ │ └── os.cc ├── interval_tree │ ├── IntervalTree.h │ ├── MAINTAINER_README.md │ └── cgmanifest.json ├── libpopcnt │ ├── LICENSE │ ├── MAINTAINER_README.md │ ├── cgmanifest.json │ └── libpopcnt.h ├── pcg │ ├── LICENSE-APACHE.txt │ ├── LICENSE-MIT.txt │ ├── cgmanifest.json │ └── include │ │ └── pcg_random.hpp ├── stb │ ├── LICENSE │ ├── MAINTAINER_README.md │ ├── cgmanifest.json │ └── stb_rect_pack.h ├── wyhash │ ├── LICENSE │ ├── MAINTAINER_README.md │ └── cgmanifest.json └── xorg_apps_rgb │ ├── MAINTAINER_README.md │ └── cgmanifest.json ├── res ├── LICENSE ├── README.md ├── console.ico ├── fonts │ ├── CascadiaCode.ttf │ ├── CascadiaCodeItalic.ttf │ ├── CascadiaMono.ttf │ ├── CascadiaMonoItalic.ttf │ └── README.md ├── terminal.ico ├── terminal │ ├── Generate-TerminalAssets.ps1 │ ├── Terminal.svg │ ├── Terminal_Can.svg │ ├── Terminal_Can_HC.svg │ ├── Terminal_Dev.svg │ ├── Terminal_Dev_HC.svg │ ├── Terminal_HC.svg │ ├── Terminal_Pre.svg │ ├── Terminal_Pre_HC.svg │ ├── images-Can │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-100_contrast-black.png │ │ ├── LargeTile.scale-100_contrast-white.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-125_contrast-black.png │ │ ├── LargeTile.scale-125_contrast-white.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-150_contrast-black.png │ │ ├── LargeTile.scale-150_contrast-white.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-200_contrast-black.png │ │ ├── LargeTile.scale-200_contrast-white.png │ │ ├── LargeTile.scale-400.png │ │ ├── LargeTile.scale-400_contrast-black.png │ │ ├── LargeTile.scale-400_contrast-white.png │ │ ├── LockScreenLogo.scale-100.png │ │ ├── LockScreenLogo.scale-100_contrast-black.png │ │ ├── LockScreenLogo.scale-100_contrast-white.png │ │ ├── LockScreenLogo.scale-125.png │ │ ├── LockScreenLogo.scale-125_contrast-black.png │ │ ├── LockScreenLogo.scale-125_contrast-white.png │ │ ├── LockScreenLogo.scale-150.png │ │ ├── LockScreenLogo.scale-150_contrast-black.png │ │ ├── LockScreenLogo.scale-150_contrast-white.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── LockScreenLogo.scale-200_contrast-black.png │ │ ├── LockScreenLogo.scale-200_contrast-white.png │ │ ├── LockScreenLogo.scale-400.png │ │ ├── LockScreenLogo.scale-400_contrast-black.png │ │ ├── LockScreenLogo.scale-400_contrast-white.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-100_contrast-black.png │ │ ├── SmallTile.scale-100_contrast-white.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-125_contrast-black.png │ │ ├── SmallTile.scale-125_contrast-white.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-150_contrast-black.png │ │ ├── SmallTile.scale-150_contrast-white.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-200_contrast-black.png │ │ ├── SmallTile.scale-200_contrast-white.png │ │ ├── SmallTile.scale-400.png │ │ ├── SmallTile.scale-400_contrast-black.png │ │ ├── SmallTile.scale-400_contrast-white.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-100_contrast-black.png │ │ ├── SplashScreen.scale-100_contrast-white.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-125_contrast-black.png │ │ ├── SplashScreen.scale-125_contrast-white.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-150_contrast-black.png │ │ ├── SplashScreen.scale-150_contrast-white.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-200_contrast-black.png │ │ ├── SplashScreen.scale-200_contrast-white.png │ │ ├── SplashScreen.scale-400.png │ │ ├── SplashScreen.scale-400_contrast-black.png │ │ ├── SplashScreen.scale-400_contrast-white.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-100_contrast-black.png │ │ ├── Square150x150Logo.scale-100_contrast-white.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-125_contrast-black.png │ │ ├── Square150x150Logo.scale-125_contrast-white.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-150_contrast-black.png │ │ ├── Square150x150Logo.scale-150_contrast-white.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-200_contrast-black.png │ │ ├── Square150x150Logo.scale-200_contrast-white.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square150x150Logo.scale-400_contrast-black.png │ │ ├── Square150x150Logo.scale-400_contrast-white.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100_contrast-black.png │ │ ├── Square44x44Logo.scale-100_contrast-white.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-125_contrast-black.png │ │ ├── Square44x44Logo.scale-125_contrast-white.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-150_contrast-black.png │ │ ├── Square44x44Logo.scale-150_contrast-white.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200_contrast-black.png │ │ ├── Square44x44Logo.scale-200_contrast-white.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.scale-400_contrast-black.png │ │ ├── Square44x44Logo.scale-400_contrast-white.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-16_contrast-black.png │ │ ├── Square44x44Logo.targetsize-16_contrast-white.png │ │ ├── Square44x44Logo.targetsize-20.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-20_contrast-black.png │ │ ├── Square44x44Logo.targetsize-20_contrast-white.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-24_contrast-black.png │ │ ├── Square44x44Logo.targetsize-24_contrast-white.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-256_contrast-black.png │ │ ├── Square44x44Logo.targetsize-256_contrast-white.png │ │ ├── Square44x44Logo.targetsize-30.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-30_contrast-black.png │ │ ├── Square44x44Logo.targetsize-30_contrast-white.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-32_contrast-black.png │ │ ├── Square44x44Logo.targetsize-32_contrast-white.png │ │ ├── Square44x44Logo.targetsize-36.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-36_contrast-black.png │ │ ├── Square44x44Logo.targetsize-36_contrast-white.png │ │ ├── Square44x44Logo.targetsize-40.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-40_contrast-black.png │ │ ├── Square44x44Logo.targetsize-40_contrast-white.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-48_contrast-black.png │ │ ├── Square44x44Logo.targetsize-48_contrast-white.png │ │ ├── Square44x44Logo.targetsize-60.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-60_contrast-black.png │ │ ├── Square44x44Logo.targetsize-60_contrast-white.png │ │ ├── Square44x44Logo.targetsize-64.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-64_contrast-black.png │ │ ├── Square44x44Logo.targetsize-64_contrast-white.png │ │ ├── Square44x44Logo.targetsize-72.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-72_contrast-black.png │ │ ├── Square44x44Logo.targetsize-72_contrast-white.png │ │ ├── Square44x44Logo.targetsize-80.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-80_contrast-black.png │ │ ├── Square44x44Logo.targetsize-80_contrast-white.png │ │ ├── Square44x44Logo.targetsize-96.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-96_contrast-black.png │ │ ├── Square44x44Logo.targetsize-96_contrast-white.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-100_contrast-black.png │ │ ├── StoreLogo.scale-100_contrast-white.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-125_contrast-black.png │ │ ├── StoreLogo.scale-125_contrast-white.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-150_contrast-black.png │ │ ├── StoreLogo.scale-150_contrast-white.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-200_contrast-black.png │ │ ├── StoreLogo.scale-200_contrast-white.png │ │ ├── StoreLogo.scale-400.png │ │ ├── StoreLogo.scale-400_contrast-black.png │ │ ├── StoreLogo.scale-400_contrast-white.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-100_contrast-black.png │ │ ├── Wide310x150Logo.scale-100_contrast-white.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-125_contrast-black.png │ │ ├── Wide310x150Logo.scale-125_contrast-white.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-150_contrast-black.png │ │ ├── Wide310x150Logo.scale-150_contrast-white.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── Wide310x150Logo.scale-200_contrast-black.png │ │ ├── Wide310x150Logo.scale-200_contrast-white.png │ │ ├── Wide310x150Logo.scale-400.png │ │ ├── Wide310x150Logo.scale-400_contrast-black.png │ │ ├── Wide310x150Logo.scale-400_contrast-white.png │ │ ├── terminal.ico │ │ ├── terminal_contrast-black.ico │ │ └── terminal_contrast-white.ico │ ├── images-Dev │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-100_contrast-black.png │ │ ├── LargeTile.scale-100_contrast-white.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-125_contrast-black.png │ │ ├── LargeTile.scale-125_contrast-white.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-150_contrast-black.png │ │ ├── LargeTile.scale-150_contrast-white.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-200_contrast-black.png │ │ ├── LargeTile.scale-200_contrast-white.png │ │ ├── LargeTile.scale-400.png │ │ ├── LargeTile.scale-400_contrast-black.png │ │ ├── LargeTile.scale-400_contrast-white.png │ │ ├── LockScreenLogo.scale-100.png │ │ ├── LockScreenLogo.scale-100_contrast-black.png │ │ ├── LockScreenLogo.scale-100_contrast-white.png │ │ ├── LockScreenLogo.scale-125.png │ │ ├── LockScreenLogo.scale-125_contrast-black.png │ │ ├── LockScreenLogo.scale-125_contrast-white.png │ │ ├── LockScreenLogo.scale-150.png │ │ ├── LockScreenLogo.scale-150_contrast-black.png │ │ ├── LockScreenLogo.scale-150_contrast-white.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── LockScreenLogo.scale-200_contrast-black.png │ │ ├── LockScreenLogo.scale-200_contrast-white.png │ │ ├── LockScreenLogo.scale-400.png │ │ ├── LockScreenLogo.scale-400_contrast-black.png │ │ ├── LockScreenLogo.scale-400_contrast-white.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-100_contrast-black.png │ │ ├── SmallTile.scale-100_contrast-white.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-125_contrast-black.png │ │ ├── SmallTile.scale-125_contrast-white.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-150_contrast-black.png │ │ ├── SmallTile.scale-150_contrast-white.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-200_contrast-black.png │ │ ├── SmallTile.scale-200_contrast-white.png │ │ ├── SmallTile.scale-400.png │ │ ├── SmallTile.scale-400_contrast-black.png │ │ ├── SmallTile.scale-400_contrast-white.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-100_contrast-black.png │ │ ├── Square150x150Logo.scale-100_contrast-white.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-125_contrast-black.png │ │ ├── Square150x150Logo.scale-125_contrast-white.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-150_contrast-black.png │ │ ├── Square150x150Logo.scale-150_contrast-white.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-200_contrast-black.png │ │ ├── Square150x150Logo.scale-200_contrast-white.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square150x150Logo.scale-400_contrast-black.png │ │ ├── Square150x150Logo.scale-400_contrast-white.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100_contrast-black.png │ │ ├── Square44x44Logo.scale-100_contrast-white.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-125_contrast-black.png │ │ ├── Square44x44Logo.scale-125_contrast-white.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-150_contrast-black.png │ │ ├── Square44x44Logo.scale-150_contrast-white.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200_contrast-black.png │ │ ├── Square44x44Logo.scale-200_contrast-white.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.scale-400_contrast-black.png │ │ ├── Square44x44Logo.scale-400_contrast-white.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-16_contrast-black.png │ │ ├── Square44x44Logo.targetsize-16_contrast-white.png │ │ ├── Square44x44Logo.targetsize-20.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-20_contrast-black.png │ │ ├── Square44x44Logo.targetsize-20_contrast-white.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-24_contrast-black.png │ │ ├── Square44x44Logo.targetsize-24_contrast-white.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-256_contrast-black.png │ │ ├── Square44x44Logo.targetsize-256_contrast-white.png │ │ ├── Square44x44Logo.targetsize-30.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-30_contrast-black.png │ │ ├── Square44x44Logo.targetsize-30_contrast-white.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-32_contrast-black.png │ │ ├── Square44x44Logo.targetsize-32_contrast-white.png │ │ ├── Square44x44Logo.targetsize-36.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-36_contrast-black.png │ │ ├── Square44x44Logo.targetsize-36_contrast-white.png │ │ ├── Square44x44Logo.targetsize-40.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-40_contrast-black.png │ │ ├── Square44x44Logo.targetsize-40_contrast-white.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-48_contrast-black.png │ │ ├── Square44x44Logo.targetsize-48_contrast-white.png │ │ ├── Square44x44Logo.targetsize-60.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-60_contrast-black.png │ │ ├── Square44x44Logo.targetsize-60_contrast-white.png │ │ ├── Square44x44Logo.targetsize-64.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-64_contrast-black.png │ │ ├── Square44x44Logo.targetsize-64_contrast-white.png │ │ ├── Square44x44Logo.targetsize-72.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-72_contrast-black.png │ │ ├── Square44x44Logo.targetsize-72_contrast-white.png │ │ ├── Square44x44Logo.targetsize-80.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-80_contrast-black.png │ │ ├── Square44x44Logo.targetsize-80_contrast-white.png │ │ ├── Square44x44Logo.targetsize-96.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-96_contrast-black.png │ │ ├── Square44x44Logo.targetsize-96_contrast-white.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-100_contrast-black.png │ │ ├── StoreLogo.scale-100_contrast-white.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-125_contrast-black.png │ │ ├── StoreLogo.scale-125_contrast-white.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-150_contrast-black.png │ │ ├── StoreLogo.scale-150_contrast-white.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-200_contrast-black.png │ │ ├── StoreLogo.scale-200_contrast-white.png │ │ ├── StoreLogo.scale-400.png │ │ ├── StoreLogo.scale-400_contrast-black.png │ │ ├── StoreLogo.scale-400_contrast-white.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-100_contrast-black.png │ │ ├── Wide310x150Logo.scale-100_contrast-white.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-125_contrast-black.png │ │ ├── Wide310x150Logo.scale-125_contrast-white.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-150_contrast-black.png │ │ ├── Wide310x150Logo.scale-150_contrast-white.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── Wide310x150Logo.scale-200_contrast-black.png │ │ ├── Wide310x150Logo.scale-200_contrast-white.png │ │ ├── Wide310x150Logo.scale-400.png │ │ ├── Wide310x150Logo.scale-400_contrast-black.png │ │ ├── Wide310x150Logo.scale-400_contrast-white.png │ │ ├── terminal.ico │ │ ├── terminal_contrast-black.ico │ │ └── terminal_contrast-white.ico │ ├── images-Pre │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-100_contrast-black.png │ │ ├── LargeTile.scale-100_contrast-white.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-125_contrast-black.png │ │ ├── LargeTile.scale-125_contrast-white.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-150_contrast-black.png │ │ ├── LargeTile.scale-150_contrast-white.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-200_contrast-black.png │ │ ├── LargeTile.scale-200_contrast-white.png │ │ ├── LargeTile.scale-400.png │ │ ├── LargeTile.scale-400_contrast-black.png │ │ ├── LargeTile.scale-400_contrast-white.png │ │ ├── LockScreenLogo.scale-100.png │ │ ├── LockScreenLogo.scale-100_contrast-black.png │ │ ├── LockScreenLogo.scale-100_contrast-white.png │ │ ├── LockScreenLogo.scale-125.png │ │ ├── LockScreenLogo.scale-125_contrast-black.png │ │ ├── LockScreenLogo.scale-125_contrast-white.png │ │ ├── LockScreenLogo.scale-150.png │ │ ├── LockScreenLogo.scale-150_contrast-black.png │ │ ├── LockScreenLogo.scale-150_contrast-white.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── LockScreenLogo.scale-200_contrast-black.png │ │ ├── LockScreenLogo.scale-200_contrast-white.png │ │ ├── LockScreenLogo.scale-400.png │ │ ├── LockScreenLogo.scale-400_contrast-black.png │ │ ├── LockScreenLogo.scale-400_contrast-white.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-100_contrast-black.png │ │ ├── SmallTile.scale-100_contrast-white.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-125_contrast-black.png │ │ ├── SmallTile.scale-125_contrast-white.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-150_contrast-black.png │ │ ├── SmallTile.scale-150_contrast-white.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-200_contrast-black.png │ │ ├── SmallTile.scale-200_contrast-white.png │ │ ├── SmallTile.scale-400.png │ │ ├── SmallTile.scale-400_contrast-black.png │ │ ├── SmallTile.scale-400_contrast-white.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-100_contrast-black.png │ │ ├── Square150x150Logo.scale-100_contrast-white.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-125_contrast-black.png │ │ ├── Square150x150Logo.scale-125_contrast-white.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-150_contrast-black.png │ │ ├── Square150x150Logo.scale-150_contrast-white.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-200_contrast-black.png │ │ ├── Square150x150Logo.scale-200_contrast-white.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square150x150Logo.scale-400_contrast-black.png │ │ ├── Square150x150Logo.scale-400_contrast-white.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100_contrast-black.png │ │ ├── Square44x44Logo.scale-100_contrast-white.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-125_contrast-black.png │ │ ├── Square44x44Logo.scale-125_contrast-white.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-150_contrast-black.png │ │ ├── Square44x44Logo.scale-150_contrast-white.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200_contrast-black.png │ │ ├── Square44x44Logo.scale-200_contrast-white.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.scale-400_contrast-black.png │ │ ├── Square44x44Logo.scale-400_contrast-white.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-16_contrast-black.png │ │ ├── Square44x44Logo.targetsize-16_contrast-white.png │ │ ├── Square44x44Logo.targetsize-20.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-20_contrast-black.png │ │ ├── Square44x44Logo.targetsize-20_contrast-white.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-24_contrast-black.png │ │ ├── Square44x44Logo.targetsize-24_contrast-white.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-256_contrast-black.png │ │ ├── Square44x44Logo.targetsize-256_contrast-white.png │ │ ├── Square44x44Logo.targetsize-30.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-30_contrast-black.png │ │ ├── Square44x44Logo.targetsize-30_contrast-white.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-32_contrast-black.png │ │ ├── Square44x44Logo.targetsize-32_contrast-white.png │ │ ├── Square44x44Logo.targetsize-36.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-36_contrast-black.png │ │ ├── Square44x44Logo.targetsize-36_contrast-white.png │ │ ├── Square44x44Logo.targetsize-40.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-40_contrast-black.png │ │ ├── Square44x44Logo.targetsize-40_contrast-white.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-48_contrast-black.png │ │ ├── Square44x44Logo.targetsize-48_contrast-white.png │ │ ├── Square44x44Logo.targetsize-60.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-60_contrast-black.png │ │ ├── Square44x44Logo.targetsize-60_contrast-white.png │ │ ├── Square44x44Logo.targetsize-64.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-64_contrast-black.png │ │ ├── Square44x44Logo.targetsize-64_contrast-white.png │ │ ├── Square44x44Logo.targetsize-72.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-72_contrast-black.png │ │ ├── Square44x44Logo.targetsize-72_contrast-white.png │ │ ├── Square44x44Logo.targetsize-80.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-80_contrast-black.png │ │ ├── Square44x44Logo.targetsize-80_contrast-white.png │ │ ├── Square44x44Logo.targetsize-96.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-96_contrast-black.png │ │ ├── Square44x44Logo.targetsize-96_contrast-white.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-100_contrast-black.png │ │ ├── StoreLogo.scale-100_contrast-white.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-125_contrast-black.png │ │ ├── StoreLogo.scale-125_contrast-white.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-150_contrast-black.png │ │ ├── StoreLogo.scale-150_contrast-white.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-200_contrast-black.png │ │ ├── StoreLogo.scale-200_contrast-white.png │ │ ├── StoreLogo.scale-400.png │ │ ├── StoreLogo.scale-400_contrast-black.png │ │ ├── StoreLogo.scale-400_contrast-white.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-100_contrast-black.png │ │ ├── Wide310x150Logo.scale-100_contrast-white.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-125_contrast-black.png │ │ ├── Wide310x150Logo.scale-125_contrast-white.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-150_contrast-black.png │ │ ├── Wide310x150Logo.scale-150_contrast-white.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── Wide310x150Logo.scale-200_contrast-black.png │ │ ├── Wide310x150Logo.scale-200_contrast-white.png │ │ ├── Wide310x150Logo.scale-400.png │ │ ├── Wide310x150Logo.scale-400_contrast-black.png │ │ ├── Wide310x150Logo.scale-400_contrast-white.png │ │ ├── terminal.ico │ │ ├── terminal_contrast-black.ico │ │ └── terminal_contrast-white.ico │ ├── images-Universal │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── LockScreenLogo.scale-100.png │ │ ├── LockScreenLogo.scale-125.png │ │ ├── LockScreenLogo.scale-150.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── LockScreenLogo.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-20.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-30.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-36.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-40.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-60.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-64.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-72.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-80.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-96.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── images-UniversalDev │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── LockScreenLogo.scale-100.png │ │ ├── LockScreenLogo.scale-125.png │ │ ├── LockScreenLogo.scale-150.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── LockScreenLogo.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-20.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-30.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-36.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-40.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-60.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-64.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-72.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-80.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-96.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ └── images │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-100_contrast-black.png │ │ ├── LargeTile.scale-100_contrast-white.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-125_contrast-black.png │ │ ├── LargeTile.scale-125_contrast-white.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-150_contrast-black.png │ │ ├── LargeTile.scale-150_contrast-white.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-200_contrast-black.png │ │ ├── LargeTile.scale-200_contrast-white.png │ │ ├── LargeTile.scale-400.png │ │ ├── LargeTile.scale-400_contrast-black.png │ │ ├── LargeTile.scale-400_contrast-white.png │ │ ├── LockScreenLogo.scale-100.png │ │ ├── LockScreenLogo.scale-100_contrast-black.png │ │ ├── LockScreenLogo.scale-100_contrast-white.png │ │ ├── LockScreenLogo.scale-125.png │ │ ├── LockScreenLogo.scale-125_contrast-black.png │ │ ├── LockScreenLogo.scale-125_contrast-white.png │ │ ├── LockScreenLogo.scale-150.png │ │ ├── LockScreenLogo.scale-150_contrast-black.png │ │ ├── LockScreenLogo.scale-150_contrast-white.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── LockScreenLogo.scale-200_contrast-black.png │ │ ├── LockScreenLogo.scale-200_contrast-white.png │ │ ├── LockScreenLogo.scale-400.png │ │ ├── LockScreenLogo.scale-400_contrast-black.png │ │ ├── LockScreenLogo.scale-400_contrast-white.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-100_contrast-black.png │ │ ├── SmallTile.scale-100_contrast-white.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-125_contrast-black.png │ │ ├── SmallTile.scale-125_contrast-white.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-150_contrast-black.png │ │ ├── SmallTile.scale-150_contrast-white.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-200_contrast-black.png │ │ ├── SmallTile.scale-200_contrast-white.png │ │ ├── SmallTile.scale-400.png │ │ ├── SmallTile.scale-400_contrast-black.png │ │ ├── SmallTile.scale-400_contrast-white.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-100_contrast-black.png │ │ ├── Square150x150Logo.scale-100_contrast-white.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-125_contrast-black.png │ │ ├── Square150x150Logo.scale-125_contrast-white.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-150_contrast-black.png │ │ ├── Square150x150Logo.scale-150_contrast-white.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-200_contrast-black.png │ │ ├── Square150x150Logo.scale-200_contrast-white.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square150x150Logo.scale-400_contrast-black.png │ │ ├── Square150x150Logo.scale-400_contrast-white.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-100_contrast-black.png │ │ ├── Square44x44Logo.scale-100_contrast-white.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-125_contrast-black.png │ │ ├── Square44x44Logo.scale-125_contrast-white.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-150_contrast-black.png │ │ ├── Square44x44Logo.scale-150_contrast-white.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200_contrast-black.png │ │ ├── Square44x44Logo.scale-200_contrast-white.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.scale-400_contrast-black.png │ │ ├── Square44x44Logo.scale-400_contrast-white.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-16_contrast-black.png │ │ ├── Square44x44Logo.targetsize-16_contrast-white.png │ │ ├── Square44x44Logo.targetsize-20.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-20_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-20_contrast-black.png │ │ ├── Square44x44Logo.targetsize-20_contrast-white.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-24_contrast-black.png │ │ ├── Square44x44Logo.targetsize-24_contrast-white.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-256_contrast-black.png │ │ ├── Square44x44Logo.targetsize-256_contrast-white.png │ │ ├── Square44x44Logo.targetsize-30.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-30_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-30_contrast-black.png │ │ ├── Square44x44Logo.targetsize-30_contrast-white.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-32_contrast-black.png │ │ ├── Square44x44Logo.targetsize-32_contrast-white.png │ │ ├── Square44x44Logo.targetsize-36.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-36_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-36_contrast-black.png │ │ ├── Square44x44Logo.targetsize-36_contrast-white.png │ │ ├── Square44x44Logo.targetsize-40.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-40_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-40_contrast-black.png │ │ ├── Square44x44Logo.targetsize-40_contrast-white.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-48_contrast-black.png │ │ ├── Square44x44Logo.targetsize-48_contrast-white.png │ │ ├── Square44x44Logo.targetsize-60.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-60_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-60_contrast-black.png │ │ ├── Square44x44Logo.targetsize-60_contrast-white.png │ │ ├── Square44x44Logo.targetsize-64.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-64_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-64_contrast-black.png │ │ ├── Square44x44Logo.targetsize-64_contrast-white.png │ │ ├── Square44x44Logo.targetsize-72.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-72_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-72_contrast-black.png │ │ ├── Square44x44Logo.targetsize-72_contrast-white.png │ │ ├── Square44x44Logo.targetsize-80.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-80_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-80_contrast-black.png │ │ ├── Square44x44Logo.targetsize-80_contrast-white.png │ │ ├── Square44x44Logo.targetsize-96.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated_contrast-black.png │ │ ├── Square44x44Logo.targetsize-96_altform-unplated_contrast-white.png │ │ ├── Square44x44Logo.targetsize-96_contrast-black.png │ │ ├── Square44x44Logo.targetsize-96_contrast-white.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-100_contrast-black.png │ │ ├── StoreLogo.scale-100_contrast-white.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-125_contrast-black.png │ │ ├── StoreLogo.scale-125_contrast-white.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-150_contrast-black.png │ │ ├── StoreLogo.scale-150_contrast-white.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-200_contrast-black.png │ │ ├── StoreLogo.scale-200_contrast-white.png │ │ ├── StoreLogo.scale-400.png │ │ ├── StoreLogo.scale-400_contrast-black.png │ │ ├── StoreLogo.scale-400_contrast-white.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-100_contrast-black.png │ │ ├── Wide310x150Logo.scale-100_contrast-white.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-125_contrast-black.png │ │ ├── Wide310x150Logo.scale-125_contrast-white.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-150_contrast-black.png │ │ ├── Wide310x150Logo.scale-150_contrast-white.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── Wide310x150Logo.scale-200_contrast-black.png │ │ ├── Wide310x150Logo.scale-200_contrast-white.png │ │ ├── Wide310x150Logo.scale-400.png │ │ ├── Wide310x150Logo.scale-400_contrast-black.png │ │ ├── Wide310x150Logo.scale-400_contrast-white.png │ │ ├── terminal_contrast-black.ico │ │ └── terminal_contrast-white.ico └── truetype.bmp ├── samples ├── ConPTY │ ├── EchoCon │ │ ├── EchoCon.sln │ │ ├── EchoCon │ │ │ ├── EchoCon.cpp │ │ │ ├── EchoCon.vcxproj │ │ │ ├── EchoCon.vcxproj.filters │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ └── readme.md │ ├── GUIConsole │ │ ├── GUIConsole.ConPTY │ │ │ ├── GUIConsole.ConPTY.csproj │ │ │ ├── Native │ │ │ │ ├── ConsoleApi.cs │ │ │ │ ├── ProcessApi.cs │ │ │ │ └── PseudoConsoleApi.cs │ │ │ ├── Processes │ │ │ │ ├── Process.cs │ │ │ │ └── ProcessFactory.cs │ │ │ ├── PseudoConsole.cs │ │ │ ├── PseudoConsolePipe.cs │ │ │ └── Terminal.cs │ │ ├── GUIConsole.WPF │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── GUIConsole.WPF.csproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ ├── GUIConsole.sln │ │ └── README.md │ └── MiniTerm │ │ ├── MiniTerm.sln │ │ ├── MiniTerm │ │ ├── App.config │ │ ├── MiniTerm.csproj │ │ ├── Native │ │ │ ├── ConsoleApi.cs │ │ │ ├── ProcessApi.cs │ │ │ └── PseudoConsoleApi.cs │ │ ├── Processes │ │ │ ├── Process.cs │ │ │ └── ProcessFactory.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── PseudoConsole.cs │ │ ├── PseudoConsolePipe.cs │ │ └── Terminal.cs │ │ └── README.md ├── PixelShaders │ ├── Animate_breathe.hlsl │ ├── Animate_scan.hlsl │ ├── BackgroundImage.hlsl │ ├── Broken.hlsl │ ├── Error.hlsl │ ├── Grayscale.hlsl │ ├── Invert.hlsl │ ├── Nop.hlsl │ ├── Outlines.hlsl │ ├── README.md │ ├── Rasterbars.hlsl │ ├── Retro.hlsl │ └── Screenshots │ │ ├── GraphCosine.png │ │ ├── TerminalDefault.PNG │ │ ├── TerminalInvert.PNG │ │ ├── TerminalRasterbars.PNG │ │ └── TerminalRetro.PNG └── ReadConsoleInputStream │ ├── ConcurrentBoundedQueue.cs │ ├── NativeMethods.cs │ ├── Program.cs │ ├── README.md │ ├── ReadConsoleInputStream.cs │ ├── ReadConsoleInputStreamDemo.csproj │ └── ReadConsoleInputStreamDemo.sln ├── scratch └── ScratchIslandApp │ ├── Package │ ├── Package.appxmanifest │ ├── Package.wapproj │ └── Resources │ │ ├── Resources.resw │ │ ├── de-DE │ │ └── Resources.resw │ │ ├── en-US │ │ └── Resources.resw │ │ ├── es-ES │ │ └── Resources.resw │ │ ├── fr-FR │ │ └── Resources.resw │ │ ├── it-IT │ │ └── Resources.resw │ │ ├── ja-JP │ │ └── Resources.resw │ │ ├── ko-KR │ │ └── Resources.resw │ │ ├── pt-BR │ │ └── Resources.resw │ │ ├── qps-ploc │ │ └── Resources.resw │ │ ├── qps-ploca │ │ └── Resources.resw │ │ ├── qps-plocm │ │ └── Resources.resw │ │ ├── ru-RU │ │ └── Resources.resw │ │ ├── zh-CN │ │ └── Resources.resw │ │ └── zh-TW │ │ └── Resources.resw │ ├── SampleApp │ ├── App.base.h │ ├── App.cpp │ ├── App.h │ ├── App.idl │ ├── App.xaml │ ├── MyPage.cpp │ ├── MyPage.h │ ├── MyPage.idl │ ├── MyPage.xaml │ ├── MySettings.cpp │ ├── MySettings.h │ ├── MySettings.idl │ ├── Resources │ │ ├── de-DE │ │ │ └── Resources.resw │ │ ├── en-US │ │ │ └── Resources.resw │ │ ├── es-ES │ │ │ └── Resources.resw │ │ ├── fr-FR │ │ │ └── Resources.resw │ │ ├── it-IT │ │ │ └── Resources.resw │ │ ├── ja-JP │ │ │ └── Resources.resw │ │ ├── ko-KR │ │ │ └── Resources.resw │ │ ├── pt-BR │ │ │ └── Resources.resw │ │ ├── qps-ploc │ │ │ └── Resources.resw │ │ ├── qps-ploca │ │ │ └── Resources.resw │ │ ├── qps-plocm │ │ │ └── Resources.resw │ │ ├── ru-RU │ │ │ └── Resources.resw │ │ ├── zh-CN │ │ │ └── Resources.resw │ │ └── zh-TW │ │ │ └── Resources.resw │ ├── SampleAppLib.vcxproj │ ├── SampleAppLogic.cpp │ ├── SampleAppLogic.h │ ├── SampleAppLogic.idl │ ├── dll │ │ ├── SampleApp.def │ │ ├── SampleApp.vcxproj │ │ ├── pch.cpp │ │ └── pch.h │ ├── init.cpp │ ├── packages.config │ ├── pch.cpp │ └── pch.h │ └── WindowExe │ ├── SampleAppHost.cpp │ ├── SampleAppHost.h │ ├── SampleBaseWindow.h │ ├── SampleIslandWindow.cpp │ ├── SampleIslandWindow.h │ ├── SampleMain.cpp │ ├── WindowExe.def │ ├── WindowExe.manifest │ ├── WindowExe.rc │ ├── WindowExe.vcxproj │ ├── icon.cpp │ ├── icon.h │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── resource.h ├── src ├── ConsolePerf.regions.xml ├── ConsolePerf.wprp ├── StaticAnalysis.ruleset ├── Terminal.wprp ├── audio │ ├── dirs │ └── midi │ │ ├── MidiAudio.cpp │ │ ├── MidiAudio.hpp │ │ ├── dirs │ │ ├── lib │ │ ├── midi.vcxproj │ │ ├── sources │ │ └── sources.dep │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ └── sources.inc ├── buffer │ ├── dirs │ └── out │ │ ├── DbcsAttribute.hpp │ │ ├── LineRendition.hpp │ │ ├── OutputCell.cpp │ │ ├── OutputCell.hpp │ │ ├── OutputCellIterator.cpp │ │ ├── OutputCellIterator.hpp │ │ ├── OutputCellRect.cpp │ │ ├── OutputCellRect.hpp │ │ ├── OutputCellView.cpp │ │ ├── OutputCellView.hpp │ │ ├── Row.cpp │ │ ├── Row.hpp │ │ ├── TextAttribute.cpp │ │ ├── TextAttribute.hpp │ │ ├── TextColor.cpp │ │ ├── TextColor.h │ │ ├── UTextAdapter.cpp │ │ ├── UTextAdapter.h │ │ ├── cursor.cpp │ │ ├── cursor.h │ │ ├── dirs │ │ ├── lib │ │ ├── bufferout.vcxproj │ │ ├── sources │ │ └── sources.dep │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── search.cpp │ │ ├── search.h │ │ ├── sources.inc │ │ ├── textBuffer.cpp │ │ ├── textBuffer.hpp │ │ ├── textBufferCellIterator.cpp │ │ ├── textBufferCellIterator.hpp │ │ ├── textBufferTextIterator.cpp │ │ ├── textBufferTextIterator.hpp │ │ └── ut_textbuffer │ │ ├── DefaultResource.rc │ │ ├── ReflowTests.cpp │ │ ├── TextAttributeTests.cpp │ │ ├── TextBuffer.Unit.Tests.vcxproj │ │ ├── TextColorTests.cpp │ │ ├── UTextAdapterTests.cpp │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── product.pbxproj │ │ ├── sources │ │ ├── sources.dep │ │ └── testmd.definition ├── cascadia │ ├── CascadiaPackage │ │ ├── CascadiaPackage.wapproj │ │ ├── NOTICE.html │ │ ├── Package-Can.appxmanifest │ │ ├── Package-Dev.appxmanifest │ │ ├── Package-Pre.appxmanifest │ │ ├── Package.appxmanifest │ │ ├── ProfileIcons │ │ │ ├── pwsh-preview.scale-100.png │ │ │ ├── pwsh-preview.scale-125.png │ │ │ ├── pwsh-preview.scale-150.png │ │ │ ├── pwsh-preview.scale-200.png │ │ │ ├── pwsh.scale-100.png │ │ │ ├── pwsh.scale-125.png │ │ │ ├── pwsh.scale-150.png │ │ │ ├── pwsh.scale-200.png │ │ │ ├── {0caa0dad-35be-5f56-a8ff-afceeeaa6101}.scale-100.png │ │ │ ├── {0caa0dad-35be-5f56-a8ff-afceeeaa6101}.scale-200.png │ │ │ ├── {550ce7b8-d500-50ad-8a1a-c400c3262db3}.scale-100.png │ │ │ ├── {550ce7b8-d500-50ad-8a1a-c400c3262db3}.scale-200.png │ │ │ ├── {574e775e-4f2a-5b96-ac1e-a2962a402336}.scale-100.png │ │ │ ├── {574e775e-4f2a-5b96-ac1e-a2962a402336}.scale-200.png │ │ │ ├── {61c54bbd-c2c6-5271-96e7-009a87ff44bf}.scale-100.png │ │ │ ├── {61c54bbd-c2c6-5271-96e7-009a87ff44bf}.scale-200.png │ │ │ ├── {9acb9455-ca41-5af7-950f-6bca1bc9722f}.scale-100.png │ │ │ ├── {9acb9455-ca41-5af7-950f-6bca1bc9722f}.scale-200.png │ │ │ ├── {b453ae62-4e3d-5e58-b989-0a998ec441b8}.scale-100.png │ │ │ └── {b453ae62-4e3d-5e58-b989-0a998ec441b8}.scale-200.png │ │ └── Resources │ │ │ ├── Resources.resw │ │ │ ├── af-ZA │ │ │ └── Resources.resw │ │ │ ├── am-ET │ │ │ └── Resources.resw │ │ │ ├── ar-SA │ │ │ └── Resources.resw │ │ │ ├── as-IN │ │ │ └── Resources.resw │ │ │ ├── az-Latn-AZ │ │ │ └── Resources.resw │ │ │ ├── bg-BG │ │ │ └── Resources.resw │ │ │ ├── bn-IN │ │ │ └── Resources.resw │ │ │ ├── bs-Latn-BA │ │ │ └── Resources.resw │ │ │ ├── ca-ES │ │ │ └── Resources.resw │ │ │ ├── ca-Es-VALENCIA │ │ │ └── Resources.resw │ │ │ ├── cs-CZ │ │ │ └── Resources.resw │ │ │ ├── cy-GB │ │ │ └── Resources.resw │ │ │ ├── da-DK │ │ │ └── Resources.resw │ │ │ ├── de-DE │ │ │ └── Resources.resw │ │ │ ├── el-GR │ │ │ └── Resources.resw │ │ │ ├── en-GB │ │ │ └── Resources.resw │ │ │ ├── en-US │ │ │ └── Resources.resw │ │ │ ├── es-ES │ │ │ └── Resources.resw │ │ │ ├── es-MX │ │ │ └── Resources.resw │ │ │ ├── et-EE │ │ │ └── Resources.resw │ │ │ ├── eu-ES │ │ │ └── Resources.resw │ │ │ ├── fa-IR │ │ │ └── Resources.resw │ │ │ ├── fi-FI │ │ │ └── Resources.resw │ │ │ ├── fil-PH │ │ │ └── Resources.resw │ │ │ ├── fr-CA │ │ │ └── Resources.resw │ │ │ ├── fr-FR │ │ │ └── Resources.resw │ │ │ ├── ga-IE │ │ │ └── Resources.resw │ │ │ ├── gd-gb │ │ │ └── Resources.resw │ │ │ ├── gl-ES │ │ │ └── Resources.resw │ │ │ ├── gu-IN │ │ │ └── Resources.resw │ │ │ ├── he-IL │ │ │ └── Resources.resw │ │ │ ├── hi-IN │ │ │ └── Resources.resw │ │ │ ├── hr-HR │ │ │ └── Resources.resw │ │ │ ├── hu-HU │ │ │ └── Resources.resw │ │ │ ├── hy-AM │ │ │ └── Resources.resw │ │ │ ├── id-ID │ │ │ └── Resources.resw │ │ │ ├── is-IS │ │ │ └── Resources.resw │ │ │ ├── it-IT │ │ │ └── Resources.resw │ │ │ ├── ja-JP │ │ │ └── Resources.resw │ │ │ ├── ka-GE │ │ │ └── Resources.resw │ │ │ ├── kk-KZ │ │ │ └── Resources.resw │ │ │ ├── km-KH │ │ │ └── Resources.resw │ │ │ ├── kn-IN │ │ │ └── Resources.resw │ │ │ ├── ko-KR │ │ │ └── Resources.resw │ │ │ ├── kok-IN │ │ │ └── Resources.resw │ │ │ ├── lb-LU │ │ │ └── Resources.resw │ │ │ ├── lo-LA │ │ │ └── Resources.resw │ │ │ ├── lt-LT │ │ │ └── Resources.resw │ │ │ ├── lv-LV │ │ │ └── Resources.resw │ │ │ ├── mi-NZ │ │ │ └── Resources.resw │ │ │ ├── mk-MK │ │ │ └── Resources.resw │ │ │ ├── ml-IN │ │ │ └── Resources.resw │ │ │ ├── mr-IN │ │ │ └── Resources.resw │ │ │ ├── ms-MY │ │ │ └── Resources.resw │ │ │ ├── mt-MT │ │ │ └── Resources.resw │ │ │ ├── nb-NO │ │ │ └── Resources.resw │ │ │ ├── ne-NP │ │ │ └── Resources.resw │ │ │ ├── nl-NL │ │ │ └── Resources.resw │ │ │ ├── nn-NO │ │ │ └── Resources.resw │ │ │ ├── or-IN │ │ │ └── Resources.resw │ │ │ ├── pa-IN │ │ │ └── Resources.resw │ │ │ ├── pl-PL │ │ │ └── Resources.resw │ │ │ ├── pt-BR │ │ │ └── Resources.resw │ │ │ ├── pt-PT │ │ │ └── Resources.resw │ │ │ ├── qps-ploc │ │ │ └── Resources.resw │ │ │ ├── qps-ploca │ │ │ └── Resources.resw │ │ │ ├── qps-plocm │ │ │ └── Resources.resw │ │ │ ├── quz-PE │ │ │ └── Resources.resw │ │ │ ├── ro-RO │ │ │ └── Resources.resw │ │ │ ├── ru-RU │ │ │ └── Resources.resw │ │ │ ├── sk-SK │ │ │ └── Resources.resw │ │ │ ├── sl-SI │ │ │ └── Resources.resw │ │ │ ├── sq-AL │ │ │ └── Resources.resw │ │ │ ├── sr-Cyrl-BA │ │ │ └── Resources.resw │ │ │ ├── sr-Cyrl-RS │ │ │ └── Resources.resw │ │ │ ├── sr-Latn-RS │ │ │ └── Resources.resw │ │ │ ├── sv-SE │ │ │ └── Resources.resw │ │ │ ├── ta-IN │ │ │ └── Resources.resw │ │ │ ├── te-IN │ │ │ └── Resources.resw │ │ │ ├── th-TH │ │ │ └── Resources.resw │ │ │ ├── tr-TR │ │ │ └── Resources.resw │ │ │ ├── tt-RU │ │ │ └── Resources.resw │ │ │ ├── ug-CN │ │ │ └── Resources.resw │ │ │ ├── uk-UA │ │ │ └── Resources.resw │ │ │ ├── ur-PK │ │ │ └── Resources.resw │ │ │ ├── uz-Latn-UZ │ │ │ └── Resources.resw │ │ │ ├── vi-VN │ │ │ └── Resources.resw │ │ │ ├── zh-CN │ │ │ └── Resources.resw │ │ │ └── zh-TW │ │ │ └── Resources.resw │ ├── CascadiaResources.build.items │ ├── ElevateShim │ │ ├── elevate-shim.cpp │ │ ├── elevate-shim.rc │ │ ├── elevate-shim.vcxproj │ │ └── resource.h │ ├── LocalTests_TerminalApp │ │ ├── CommandlineTest.cpp │ │ ├── CppWinrtTailored.h │ │ ├── FilteredCommandTests.cpp │ │ ├── LocalTests_TerminalApp.def │ │ ├── SettingsTests.cpp │ │ ├── TabTests.cpp │ │ ├── TerminalApp.LocalTests.AppxManifest.prototype.xml │ │ ├── TerminalApp.LocalTests.manifest │ │ ├── TerminalApp.LocalTests.vcxproj │ │ ├── TestHostApp │ │ │ ├── Package.appxmanifest │ │ │ ├── TestHostApp.vcxproj │ │ │ ├── UnitTestApp.xaml │ │ │ ├── UnitTestApp.xaml.cpp │ │ │ ├── UnitTestApp.xaml.h │ │ │ ├── pch.cpp │ │ │ └── pch.h │ │ ├── pch.cpp │ │ └── pch.h │ ├── Remoting │ │ ├── CommandlineArgs.cpp │ │ ├── CommandlineArgs.h │ │ ├── FindTargetWindowArgs.cpp │ │ ├── FindTargetWindowArgs.h │ │ ├── GetWindowLayoutArgs.cpp │ │ ├── GetWindowLayoutArgs.h │ │ ├── Microsoft.Terminal.RemotingLib.vcxproj │ │ ├── Monarch.cpp │ │ ├── Monarch.h │ │ ├── Monarch.idl │ │ ├── MonarchFactory.h │ │ ├── Peasant.cpp │ │ ├── Peasant.h │ │ ├── Peasant.idl │ │ ├── ProposeCommandlineResult.cpp │ │ ├── ProposeCommandlineResult.h │ │ ├── QuitAllRequestedArgs.cpp │ │ ├── QuitAllRequestedArgs.h │ │ ├── RenameRequestArgs.cpp │ │ ├── RenameRequestArgs.h │ │ ├── Resources │ │ │ ├── de-DE │ │ │ │ └── Resources.resw │ │ │ ├── en-US │ │ │ │ └── Resources.resw │ │ │ ├── es-ES │ │ │ │ └── Resources.resw │ │ │ ├── fr-FR │ │ │ │ └── Resources.resw │ │ │ ├── it-IT │ │ │ │ └── Resources.resw │ │ │ ├── ja-JP │ │ │ │ └── Resources.resw │ │ │ ├── ko-KR │ │ │ │ └── Resources.resw │ │ │ ├── pt-BR │ │ │ │ └── Resources.resw │ │ │ ├── qps-ploc │ │ │ │ └── Resources.resw │ │ │ ├── qps-ploca │ │ │ │ └── Resources.resw │ │ │ ├── qps-plocm │ │ │ │ └── Resources.resw │ │ │ ├── ru-RU │ │ │ │ └── Resources.resw │ │ │ ├── zh-CN │ │ │ │ └── Resources.resw │ │ │ └── zh-TW │ │ │ │ └── Resources.resw │ │ ├── SummonWindowBehavior.cpp │ │ ├── SummonWindowBehavior.h │ │ ├── SummonWindowSelectionArgs.cpp │ │ ├── SummonWindowSelectionArgs.h │ │ ├── WindowActivatedArgs.cpp │ │ ├── WindowActivatedArgs.h │ │ ├── WindowManager.cpp │ │ ├── WindowManager.h │ │ ├── WindowManager.idl │ │ ├── dll │ │ │ ├── Microsoft.Terminal.Remoting.def │ │ │ └── Microsoft.Terminal.Remoting.vcxproj │ │ ├── init.cpp │ │ ├── pch.cpp │ │ └── pch.h │ ├── ShellExtension │ │ ├── OpenTerminalHere.cpp │ │ ├── OpenTerminalHere.h │ │ ├── WindowsTerminalShellExt.def │ │ ├── WindowsTerminalShellExt.vcxproj │ │ ├── dllmain.cpp │ │ ├── pch.cpp │ │ └── pch.h │ ├── TerminalApp │ │ ├── AboutDialog.cpp │ │ ├── AboutDialog.h │ │ ├── AboutDialog.idl │ │ ├── AboutDialog.xaml │ │ ├── ActionPaletteItem.cpp │ │ ├── ActionPaletteItem.h │ │ ├── ActionPaletteItem.idl │ │ ├── ActionPreviewHandlers.cpp │ │ ├── App.base.h │ │ ├── App.cpp │ │ ├── App.h │ │ ├── App.idl │ │ ├── App.xaml │ │ ├── AppActionHandlers.cpp │ │ ├── AppCommandlineArgs.cpp │ │ ├── AppCommandlineArgs.h │ │ ├── AppKeyBindings.cpp │ │ ├── AppKeyBindings.h │ │ ├── AppKeyBindings.idl │ │ ├── AppLogic.cpp │ │ ├── AppLogic.h │ │ ├── AppLogic.idl │ │ ├── ColorHelper.cpp │ │ ├── ColorHelper.h │ │ ├── ColorPickupFlyout.cpp │ │ ├── ColorPickupFlyout.h │ │ ├── ColorPickupFlyout.idl │ │ ├── ColorPickupFlyout.xaml │ │ ├── CommandLinePaletteItem.cpp │ │ ├── CommandLinePaletteItem.h │ │ ├── CommandLinePaletteItem.idl │ │ ├── CommandPalette.cpp │ │ ├── CommandPalette.h │ │ ├── CommandPalette.idl │ │ ├── CommandPalette.xaml │ │ ├── Commandline.cpp │ │ ├── Commandline.h │ │ ├── ContentManager.cpp │ │ ├── ContentManager.h │ │ ├── DebugTapConnection.cpp │ │ ├── DebugTapConnection.h │ │ ├── FilteredCommand.cpp │ │ ├── FilteredCommand.h │ │ ├── FilteredCommand.idl │ │ ├── HighlightedText.cpp │ │ ├── HighlightedText.h │ │ ├── HighlightedText.idl │ │ ├── HighlightedTextControl.cpp │ │ ├── HighlightedTextControl.h │ │ ├── HighlightedTextControl.idl │ │ ├── HighlightedTextControl.xaml │ │ ├── Jumplist.cpp │ │ ├── Jumplist.h │ │ ├── LanguageProfileNotifier.cpp │ │ ├── LanguageProfileNotifier.h │ │ ├── MinMaxCloseControl.cpp │ │ ├── MinMaxCloseControl.h │ │ ├── MinMaxCloseControl.idl │ │ ├── MinMaxCloseControl.xaml │ │ ├── PaletteItem.cpp │ │ ├── PaletteItem.h │ │ ├── PaletteItem.idl │ │ ├── PaletteItemTemplateSelector.cpp │ │ ├── PaletteItemTemplateSelector.h │ │ ├── PaletteItemTemplateSelector.idl │ │ ├── Pane.LayoutSizeNode.cpp │ │ ├── Pane.cpp │ │ ├── Pane.h │ │ ├── Resources │ │ │ ├── af-ZA │ │ │ │ └── ContextMenu.resw │ │ │ ├── am-ET │ │ │ │ └── ContextMenu.resw │ │ │ ├── ar-SA │ │ │ │ └── ContextMenu.resw │ │ │ ├── as-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── az-Latn-AZ │ │ │ │ └── ContextMenu.resw │ │ │ ├── bg-BG │ │ │ │ └── ContextMenu.resw │ │ │ ├── bn-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── bs-Latn-BA │ │ │ │ └── ContextMenu.resw │ │ │ ├── ca-ES │ │ │ │ └── ContextMenu.resw │ │ │ ├── ca-Es-VALENCIA │ │ │ │ └── ContextMenu.resw │ │ │ ├── cs-CZ │ │ │ │ └── ContextMenu.resw │ │ │ ├── cy-GB │ │ │ │ └── ContextMenu.resw │ │ │ ├── da-DK │ │ │ │ └── ContextMenu.resw │ │ │ ├── de-DE │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── el-GR │ │ │ │ └── ContextMenu.resw │ │ │ ├── en-GB │ │ │ │ └── ContextMenu.resw │ │ │ ├── en-US │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── es-ES │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── es-MX │ │ │ │ └── ContextMenu.resw │ │ │ ├── et-EE │ │ │ │ └── ContextMenu.resw │ │ │ ├── eu-ES │ │ │ │ └── ContextMenu.resw │ │ │ ├── fa-IR │ │ │ │ └── ContextMenu.resw │ │ │ ├── fi-FI │ │ │ │ └── ContextMenu.resw │ │ │ ├── fil-PH │ │ │ │ └── ContextMenu.resw │ │ │ ├── fr-CA │ │ │ │ └── ContextMenu.resw │ │ │ ├── fr-FR │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── ga-IE │ │ │ │ └── ContextMenu.resw │ │ │ ├── gd-gb │ │ │ │ └── ContextMenu.resw │ │ │ ├── gl-ES │ │ │ │ └── ContextMenu.resw │ │ │ ├── gu-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── he-IL │ │ │ │ └── ContextMenu.resw │ │ │ ├── hi-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── hr-HR │ │ │ │ └── ContextMenu.resw │ │ │ ├── hu-HU │ │ │ │ └── ContextMenu.resw │ │ │ ├── hy-AM │ │ │ │ └── ContextMenu.resw │ │ │ ├── id-ID │ │ │ │ └── ContextMenu.resw │ │ │ ├── is-IS │ │ │ │ └── ContextMenu.resw │ │ │ ├── it-IT │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── ja-JP │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── ka-GE │ │ │ │ └── ContextMenu.resw │ │ │ ├── kk-KZ │ │ │ │ └── ContextMenu.resw │ │ │ ├── km-KH │ │ │ │ └── ContextMenu.resw │ │ │ ├── kn-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── ko-KR │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── kok-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── lb-LU │ │ │ │ └── ContextMenu.resw │ │ │ ├── lo-LA │ │ │ │ └── ContextMenu.resw │ │ │ ├── lt-LT │ │ │ │ └── ContextMenu.resw │ │ │ ├── lv-LV │ │ │ │ └── ContextMenu.resw │ │ │ ├── mi-NZ │ │ │ │ └── ContextMenu.resw │ │ │ ├── mk-MK │ │ │ │ └── ContextMenu.resw │ │ │ ├── ml-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── mr-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── ms-MY │ │ │ │ └── ContextMenu.resw │ │ │ ├── mt-MT │ │ │ │ └── ContextMenu.resw │ │ │ ├── nb-NO │ │ │ │ └── ContextMenu.resw │ │ │ ├── ne-NP │ │ │ │ └── ContextMenu.resw │ │ │ ├── nl-NL │ │ │ │ └── ContextMenu.resw │ │ │ ├── nn-NO │ │ │ │ └── ContextMenu.resw │ │ │ ├── or-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── pa-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── pl-PL │ │ │ │ └── ContextMenu.resw │ │ │ ├── pt-BR │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── pt-PT │ │ │ │ └── ContextMenu.resw │ │ │ ├── qps-ploc │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── qps-ploca │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── qps-plocm │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── quz-PE │ │ │ │ └── ContextMenu.resw │ │ │ ├── ro-RO │ │ │ │ └── ContextMenu.resw │ │ │ ├── ru-RU │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ ├── sk-SK │ │ │ │ └── ContextMenu.resw │ │ │ ├── sl-SI │ │ │ │ └── ContextMenu.resw │ │ │ ├── sq-AL │ │ │ │ └── ContextMenu.resw │ │ │ ├── sr-Cyrl-BA │ │ │ │ └── ContextMenu.resw │ │ │ ├── sr-Cyrl-RS │ │ │ │ └── ContextMenu.resw │ │ │ ├── sr-Latn-RS │ │ │ │ └── ContextMenu.resw │ │ │ ├── sv-SE │ │ │ │ └── ContextMenu.resw │ │ │ ├── ta-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── te-IN │ │ │ │ └── ContextMenu.resw │ │ │ ├── th-TH │ │ │ │ └── ContextMenu.resw │ │ │ ├── tr-TR │ │ │ │ └── ContextMenu.resw │ │ │ ├── tt-RU │ │ │ │ └── ContextMenu.resw │ │ │ ├── ug-CN │ │ │ │ └── ContextMenu.resw │ │ │ ├── uk-UA │ │ │ │ └── ContextMenu.resw │ │ │ ├── ur-PK │ │ │ │ └── ContextMenu.resw │ │ │ ├── uz-Latn-UZ │ │ │ │ └── ContextMenu.resw │ │ │ ├── vi-VN │ │ │ │ └── ContextMenu.resw │ │ │ ├── zh-CN │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ │ └── zh-TW │ │ │ │ ├── ContextMenu.resw │ │ │ │ └── Resources.resw │ │ ├── SettingsLoadEventArgs.h │ │ ├── SettingsTab.cpp │ │ ├── SettingsTab.h │ │ ├── SettingsTab.idl │ │ ├── ShortcutActionDispatch.cpp │ │ ├── ShortcutActionDispatch.h │ │ ├── ShortcutActionDispatch.idl │ │ ├── SuggestionsControl.cpp │ │ ├── SuggestionsControl.h │ │ ├── SuggestionsControl.idl │ │ ├── SuggestionsControl.xaml │ │ ├── TabBase.cpp │ │ ├── TabBase.h │ │ ├── TabBase.idl │ │ ├── TabHeaderControl.cpp │ │ ├── TabHeaderControl.h │ │ ├── TabHeaderControl.idl │ │ ├── TabHeaderControl.xaml │ │ ├── TabManagement.cpp │ │ ├── TabPaletteItem.cpp │ │ ├── TabPaletteItem.h │ │ ├── TabPaletteItem.idl │ │ ├── TabRowControl.cpp │ │ ├── TabRowControl.h │ │ ├── TabRowControl.idl │ │ ├── TabRowControl.xaml │ │ ├── TaskbarState.cpp │ │ ├── TaskbarState.h │ │ ├── TaskbarState.idl │ │ ├── TerminalAppLib.vcxproj │ │ ├── TerminalAppLib.vcxproj.filters │ │ ├── TerminalPage.cpp │ │ ├── TerminalPage.h │ │ ├── TerminalPage.idl │ │ ├── TerminalPage.xaml │ │ ├── TerminalTab.cpp │ │ ├── TerminalTab.h │ │ ├── TerminalTab.idl │ │ ├── TerminalTabStatus.cpp │ │ ├── TerminalTabStatus.h │ │ ├── TerminalTabStatus.idl │ │ ├── TerminalWindow.cpp │ │ ├── TerminalWindow.h │ │ ├── TerminalWindow.idl │ │ ├── TitlebarControl.cpp │ │ ├── TitlebarControl.h │ │ ├── TitlebarControl.idl │ │ ├── TitlebarControl.xaml │ │ ├── Toast.cpp │ │ ├── Toast.h │ │ ├── dll │ │ │ ├── TerminalApp.def │ │ │ ├── TerminalApp.vcxproj │ │ │ ├── pch.cpp │ │ │ └── pch.h │ │ ├── init.cpp │ │ ├── pch.cpp │ │ └── pch.h │ ├── TerminalAzBridge │ │ ├── ConsoleInputReader.cpp │ │ ├── ConsoleInputReader.h │ │ ├── TerminalAzBridge.vcxproj │ │ ├── main.cpp │ │ ├── pch.cpp │ │ └── pch.h │ ├── TerminalConnection │ │ ├── AzureClient.h │ │ ├── AzureClientID.h │ │ ├── AzureConnection.cpp │ │ ├── AzureConnection.h │ │ ├── AzureConnection.idl │ │ ├── BaseTerminalConnection.h │ │ ├── CTerminalHandoff.cpp │ │ ├── CTerminalHandoff.h │ │ ├── ConnectionInformation.cpp │ │ ├── ConnectionInformation.h │ │ ├── ConnectionInformation.idl │ │ ├── ConptyConnection.cpp │ │ ├── ConptyConnection.h │ │ ├── ConptyConnection.idl │ │ ├── EchoConnection.cpp │ │ ├── EchoConnection.h │ │ ├── EchoConnection.idl │ │ ├── ITerminalConnection.idl │ │ ├── Resources │ │ │ ├── de-DE │ │ │ │ └── Resources.resw │ │ │ ├── en-US │ │ │ │ └── Resources.resw │ │ │ ├── es-ES │ │ │ │ └── Resources.resw │ │ │ ├── fr-FR │ │ │ │ └── Resources.resw │ │ │ ├── it-IT │ │ │ │ └── Resources.resw │ │ │ ├── ja-JP │ │ │ │ └── Resources.resw │ │ │ ├── ko-KR │ │ │ │ └── Resources.resw │ │ │ ├── pt-BR │ │ │ │ └── Resources.resw │ │ │ ├── qps-ploc │ │ │ │ └── Resources.resw │ │ │ ├── qps-ploca │ │ │ │ └── Resources.resw │ │ │ ├── qps-plocm │ │ │ │ └── Resources.resw │ │ │ ├── ru-RU │ │ │ │ └── Resources.resw │ │ │ ├── zh-CN │ │ │ │ └── Resources.resw │ │ │ └── zh-TW │ │ │ │ └── Resources.resw │ │ ├── TerminalConnection.def │ │ ├── TerminalConnection.vcxproj │ │ ├── TerminalConnection.vcxproj.filters │ │ ├── init.cpp │ │ ├── pch.cpp │ │ └── pch.h │ ├── TerminalControl │ │ ├── ControlAppearance.h │ │ ├── ControlCore.cpp │ │ ├── ControlCore.h │ │ ├── ControlCore.idl │ │ ├── ControlInteractivity.cpp │ │ ├── ControlInteractivity.h │ │ ├── ControlInteractivity.idl │ │ ├── ControlSettings.h │ │ ├── EventArgs.cpp │ │ ├── EventArgs.h │ │ ├── EventArgs.idl │ │ ├── HwndTerminal.cpp │ │ ├── HwndTerminal.hpp │ │ ├── HwndTerminalAutomationPeer.cpp │ │ ├── HwndTerminalAutomationPeer.hpp │ │ ├── IControlAppearance.idl │ │ ├── IControlSettings.idl │ │ ├── ICoreState.idl │ │ ├── IKeyBindings.idl │ │ ├── IMouseWheelListener.idl │ │ ├── InteractivityAutomationPeer.cpp │ │ ├── InteractivityAutomationPeer.h │ │ ├── InteractivityAutomationPeer.idl │ │ ├── KeyChord.cpp │ │ ├── KeyChord.h │ │ ├── KeyChord.idl │ │ ├── Resources │ │ │ ├── de-DE │ │ │ │ └── Resources.resw │ │ │ ├── en-US │ │ │ │ └── Resources.resw │ │ │ ├── es-ES │ │ │ │ └── Resources.resw │ │ │ ├── fr-FR │ │ │ │ └── Resources.resw │ │ │ ├── it-IT │ │ │ │ └── Resources.resw │ │ │ ├── ja-JP │ │ │ │ └── Resources.resw │ │ │ ├── ko-KR │ │ │ │ └── Resources.resw │ │ │ ├── pt-BR │ │ │ │ └── Resources.resw │ │ │ ├── qps-ploc │ │ │ │ └── Resources.resw │ │ │ ├── qps-ploca │ │ │ │ └── Resources.resw │ │ │ ├── qps-plocm │ │ │ │ └── Resources.resw │ │ │ ├── ru-RU │ │ │ │ └── Resources.resw │ │ │ ├── zh-CN │ │ │ │ └── Resources.resw │ │ │ └── zh-TW │ │ │ │ └── Resources.resw │ │ ├── ScrollBarVisualStateManager.cpp │ │ ├── ScrollBarVisualStateManager.h │ │ ├── ScrollBarVisualStateManager.idl │ │ ├── SearchBoxControl.cpp │ │ ├── SearchBoxControl.h │ │ ├── SearchBoxControl.idl │ │ ├── SearchBoxControl.xaml │ │ ├── TSFInputControl.cpp │ │ ├── TSFInputControl.h │ │ ├── TSFInputControl.idl │ │ ├── TSFInputControl.xaml │ │ ├── TermControl.cpp │ │ ├── TermControl.h │ │ ├── TermControl.idl │ │ ├── TermControl.xaml │ │ ├── TermControlAutomationPeer.cpp │ │ ├── TermControlAutomationPeer.h │ │ ├── TermControlAutomationPeer.idl │ │ ├── TerminalControlLib.vcxproj │ │ ├── XamlLights.cpp │ │ ├── XamlLights.h │ │ ├── XamlLights.idl │ │ ├── XamlUiaTextRange.cpp │ │ ├── XamlUiaTextRange.h │ │ ├── dll │ │ │ ├── Microsoft.Terminal.Control.def │ │ │ ├── TerminalControl.vcxproj │ │ │ ├── pch.cpp │ │ │ └── pch.h │ │ ├── init.cpp │ │ ├── pch.cpp │ │ └── pch.h │ ├── TerminalCore │ │ ├── ControlKeyStates.hpp │ │ ├── ICoreAppearance.idl │ │ ├── ICoreSettings.idl │ │ ├── ITerminalInput.hpp │ │ ├── Terminal.cpp │ │ ├── Terminal.hpp │ │ ├── TerminalApi.cpp │ │ ├── TerminalSelection.cpp │ │ ├── lib │ │ │ └── terminalcore-lib.vcxproj │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── terminalcore-common.vcxitems │ │ ├── terminalrenderdata.cpp │ │ └── tracing.hpp │ ├── TerminalSettingsEditor │ │ ├── Actions.cpp │ │ ├── Actions.h │ │ ├── Actions.idl │ │ ├── Actions.xaml │ │ ├── ActionsViewModel.cpp │ │ ├── ActionsViewModel.h │ │ ├── ActionsViewModel.idl │ │ ├── AddProfile.cpp │ │ ├── AddProfile.h │ │ ├── AddProfile.idl │ │ ├── AddProfile.xaml │ │ ├── Appearances.cpp │ │ ├── Appearances.h │ │ ├── Appearances.idl │ │ ├── Appearances.xaml │ │ ├── ColorSchemeViewModel.cpp │ │ ├── ColorSchemeViewModel.h │ │ ├── ColorSchemeViewModel.idl │ │ ├── ColorSchemes.cpp │ │ ├── ColorSchemes.h │ │ ├── ColorSchemes.idl │ │ ├── ColorSchemes.xaml │ │ ├── ColorSchemesPageViewModel.cpp │ │ ├── ColorSchemesPageViewModel.h │ │ ├── ColorSchemesPageViewModel.idl │ │ ├── CommonResources.xaml │ │ ├── EditColorScheme.cpp │ │ ├── EditColorScheme.h │ │ ├── EditColorScheme.idl │ │ ├── EditColorScheme.xaml │ │ ├── EnumEntry.h │ │ ├── EnumEntry.idl │ │ ├── GlobalAppearance.cpp │ │ ├── GlobalAppearance.h │ │ ├── GlobalAppearance.idl │ │ ├── GlobalAppearance.xaml │ │ ├── GlobalAppearanceViewModel.cpp │ │ ├── GlobalAppearanceViewModel.h │ │ ├── GlobalAppearanceViewModel.idl │ │ ├── Interaction.cpp │ │ ├── Interaction.h │ │ ├── Interaction.idl │ │ ├── Interaction.xaml │ │ ├── InteractionViewModel.cpp │ │ ├── InteractionViewModel.h │ │ ├── InteractionViewModel.idl │ │ ├── KeyChordListener.cpp │ │ ├── KeyChordListener.h │ │ ├── KeyChordListener.idl │ │ ├── KeyChordListener.xaml │ │ ├── Launch.cpp │ │ ├── Launch.h │ │ ├── Launch.idl │ │ ├── Launch.xaml │ │ ├── LaunchViewModel.cpp │ │ ├── LaunchViewModel.h │ │ ├── LaunchViewModel.idl │ │ ├── MainPage.cpp │ │ ├── MainPage.h │ │ ├── MainPage.idl │ │ ├── MainPage.xaml │ │ ├── Microsoft.Terminal.Settings.Editor.def │ │ ├── Microsoft.Terminal.Settings.Editor.vcxproj │ │ ├── Microsoft.Terminal.Settings.Editor.vcxproj.filters │ │ ├── PercentageSignConverter.cpp │ │ ├── PercentageSignConverter.h │ │ ├── PreviewConnection.cpp │ │ ├── PreviewConnection.h │ │ ├── ProfileViewModel.cpp │ │ ├── ProfileViewModel.h │ │ ├── ProfileViewModel.idl │ │ ├── Profiles_Advanced.cpp │ │ ├── Profiles_Advanced.h │ │ ├── Profiles_Advanced.idl │ │ ├── Profiles_Advanced.xaml │ │ ├── Profiles_Appearance.cpp │ │ ├── Profiles_Appearance.h │ │ ├── Profiles_Appearance.idl │ │ ├── Profiles_Appearance.xaml │ │ ├── Profiles_Base.cpp │ │ ├── Profiles_Base.h │ │ ├── Profiles_Base.idl │ │ ├── Profiles_Base.xaml │ │ ├── Rendering.cpp │ │ ├── Rendering.h │ │ ├── Rendering.idl │ │ ├── Rendering.xaml │ │ ├── RenderingViewModel.cpp │ │ ├── RenderingViewModel.h │ │ ├── RenderingViewModel.idl │ │ ├── Resources │ │ │ ├── de-DE │ │ │ │ └── Resources.resw │ │ │ ├── en-US │ │ │ │ └── Resources.resw │ │ │ ├── es-ES │ │ │ │ └── Resources.resw │ │ │ ├── fr-FR │ │ │ │ └── Resources.resw │ │ │ ├── it-IT │ │ │ │ └── Resources.resw │ │ │ ├── ja-JP │ │ │ │ └── Resources.resw │ │ │ ├── ko-KR │ │ │ │ └── Resources.resw │ │ │ ├── pt-BR │ │ │ │ └── Resources.resw │ │ │ ├── qps-ploc │ │ │ │ └── Resources.resw │ │ │ ├── qps-ploca │ │ │ │ └── Resources.resw │ │ │ ├── qps-plocm │ │ │ │ └── Resources.resw │ │ │ ├── ru-RU │ │ │ │ └── Resources.resw │ │ │ ├── zh-CN │ │ │ │ └── Resources.resw │ │ │ └── zh-TW │ │ │ │ └── Resources.resw │ │ ├── SettingContainer.cpp │ │ ├── SettingContainer.h │ │ ├── SettingContainer.idl │ │ ├── SettingContainerStyle.xaml │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ ├── ViewModelHelpers.h │ │ ├── ViewModelHelpers.idl.h │ │ ├── pch.cpp │ │ └── pch.h │ ├── TerminalSettingsModel │ │ ├── ActionAndArgs.cpp │ │ ├── ActionAndArgs.h │ │ ├── ActionArgs.cpp │ │ ├── ActionArgs.h │ │ ├── ActionArgs.idl │ │ ├── ActionArgsMagic.h │ │ ├── ActionMap.cpp │ │ ├── ActionMap.h │ │ ├── ActionMap.idl │ │ ├── ActionMapSerialization.cpp │ │ ├── AllShortcutActions.h │ │ ├── AppearanceConfig.cpp │ │ ├── AppearanceConfig.h │ │ ├── AppearanceConfig.idl │ │ ├── ApplicationState.cpp │ │ ├── ApplicationState.h │ │ ├── ApplicationState.idl │ │ ├── AzureCloudShellGenerator.cpp │ │ ├── AzureCloudShellGenerator.h │ │ ├── CascadiaSettings.cpp │ │ ├── CascadiaSettings.h │ │ ├── CascadiaSettings.idl │ │ ├── CascadiaSettingsSerialization.cpp │ │ ├── ColorScheme.cpp │ │ ├── ColorScheme.h │ │ ├── ColorScheme.idl │ │ ├── Command.cpp │ │ ├── Command.h │ │ ├── Command.idl │ │ ├── DefaultTerminal.cpp │ │ ├── DefaultTerminal.h │ │ ├── DefaultTerminal.idl │ │ ├── DynamicProfileUtils.cpp │ │ ├── DynamicProfileUtils.h │ │ ├── EnumMappings.cpp │ │ ├── EnumMappings.h │ │ ├── EnumMappings.idl │ │ ├── FileUtils.cpp │ │ ├── FileUtils.h │ │ ├── FolderEntry.cpp │ │ ├── FolderEntry.h │ │ ├── FontConfig.cpp │ │ ├── FontConfig.h │ │ ├── FontConfig.idl │ │ ├── GlobalAppSettings.cpp │ │ ├── GlobalAppSettings.h │ │ ├── GlobalAppSettings.idl │ │ ├── HashUtils.h │ │ ├── IAppearanceConfig.idl │ │ ├── IDynamicProfileGenerator.h │ │ ├── IInheritable.h │ │ ├── IInheritable.idl.h │ │ ├── ISettingsModelObject.idl │ │ ├── JsonUtils.h │ │ ├── KeyChordSerialization.cpp │ │ ├── KeyChordSerialization.h │ │ ├── KeyChordSerialization.idl │ │ ├── LegacyProfileGeneratorNamespaces.h │ │ ├── MTSMSettings.h │ │ ├── MatchProfilesEntry.cpp │ │ ├── MatchProfilesEntry.h │ │ ├── Microsoft.Terminal.Settings.Model.rc │ │ ├── Microsoft.Terminal.Settings.ModelLib.vcxproj │ │ ├── Microsoft.Terminal.Settings.ModelLib.vcxproj.filters │ │ ├── ModelSerializationHelpers.h │ │ ├── NewTabMenuEntry.cpp │ │ ├── NewTabMenuEntry.h │ │ ├── NewTabMenuEntry.idl │ │ ├── PowershellCoreProfileGenerator.cpp │ │ ├── PowershellCoreProfileGenerator.h │ │ ├── Profile.cpp │ │ ├── Profile.h │ │ ├── Profile.idl │ │ ├── ProfileCollectionEntry.cpp │ │ ├── ProfileCollectionEntry.h │ │ ├── ProfileEntry.cpp │ │ ├── ProfileEntry.h │ │ ├── RemainingProfilesEntry.cpp │ │ ├── RemainingProfilesEntry.h │ │ ├── Resources │ │ │ ├── de-DE │ │ │ │ └── Resources.resw │ │ │ ├── en-US │ │ │ │ └── Resources.resw │ │ │ ├── es-ES │ │ │ │ └── Resources.resw │ │ │ ├── fr-FR │ │ │ │ └── Resources.resw │ │ │ ├── it-IT │ │ │ │ └── Resources.resw │ │ │ ├── ja-JP │ │ │ │ └── Resources.resw │ │ │ ├── ko-KR │ │ │ │ └── Resources.resw │ │ │ ├── pt-BR │ │ │ │ └── Resources.resw │ │ │ ├── qps-ploc │ │ │ │ └── Resources.resw │ │ │ ├── qps-ploca │ │ │ │ └── Resources.resw │ │ │ ├── qps-plocm │ │ │ │ └── Resources.resw │ │ │ ├── ru-RU │ │ │ │ └── Resources.resw │ │ │ ├── zh-CN │ │ │ │ └── Resources.resw │ │ │ └── zh-TW │ │ │ │ └── Resources.resw │ │ ├── SeparatorEntry.cpp │ │ ├── SeparatorEntry.h │ │ ├── SettingsTypes.h │ │ ├── SshHostGenerator.cpp │ │ ├── SshHostGenerator.h │ │ ├── TerminalSettings.cpp │ │ ├── TerminalSettings.h │ │ ├── TerminalSettings.idl │ │ ├── TerminalSettingsSerializationHelpers.h │ │ ├── TerminalWarnings.h │ │ ├── TerminalWarnings.idl │ │ ├── Theme.cpp │ │ ├── Theme.h │ │ ├── Theme.idl │ │ ├── VisualStudioGenerator.cpp │ │ ├── VisualStudioGenerator.h │ │ ├── VsDevCmdGenerator.cpp │ │ ├── VsDevCmdGenerator.h │ │ ├── VsDevShellGenerator.cpp │ │ ├── VsDevShellGenerator.h │ │ ├── VsSetupConfiguration.cpp │ │ ├── VsSetupConfiguration.h │ │ ├── WslDistroGenerator.cpp │ │ ├── WslDistroGenerator.h │ │ ├── defaults.json │ │ ├── dll │ │ │ ├── Microsoft.Terminal.Settings.Model.def │ │ │ └── Microsoft.Terminal.Settings.Model.vcxproj │ │ ├── enableColorSelection.json │ │ ├── init.cpp │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── resource.h │ │ └── userDefaults.json │ ├── UIHelpers │ │ ├── Converters.cpp │ │ ├── Converters.h │ │ ├── Converters.idl │ │ ├── IDirectKeyListener.idl │ │ ├── IconPathConverter.cpp │ │ ├── IconPathConverter.h │ │ ├── IconPathConverter.idl │ │ ├── Microsoft.Terminal.UI.def │ │ ├── ResourceString.cpp │ │ ├── ResourceString.h │ │ ├── ResourceString.idl │ │ ├── UIHelpers.vcxproj │ │ ├── UIHelpers.vcxproj.filters │ │ ├── init.cpp │ │ ├── pch.cpp │ │ └── pch.h │ ├── UnitTests_Control │ │ ├── Control.UnitTests.vcxproj │ │ ├── ControlCoreTests.cpp │ │ ├── ControlInteractivityTests.cpp │ │ ├── MockConnection.h │ │ ├── MockControlSettings.h │ │ ├── UnitTests_Control.def │ │ ├── pch.cpp │ │ └── pch.h │ ├── UnitTests_Remoting │ │ ├── Remoting.UnitTests.vcxproj │ │ ├── RemotingTests.cpp │ │ ├── UnitTests_Remoting.def │ │ ├── pch.cpp │ │ └── pch.h │ ├── UnitTests_SettingsModel │ │ ├── ColorSchemeTests.cpp │ │ ├── CommandTests.cpp │ │ ├── DeserializationTests.cpp │ │ ├── JsonTestClass.h │ │ ├── KeyBindingsTests.cpp │ │ ├── NewTabMenuTests.cpp │ │ ├── ProfileTests.cpp │ │ ├── SerializationTests.cpp │ │ ├── SettingsModel.UnitTests.vcxproj │ │ ├── TerminalSettingsTests.cpp │ │ ├── TestUtils.h │ │ ├── ThemeTests.cpp │ │ ├── UnitTests_SettingsModel.def │ │ ├── pch.cpp │ │ └── pch.h │ ├── UnitTests_TerminalCore │ │ ├── ConptyRoundtripTests.cpp │ │ ├── InputTest.cpp │ │ ├── MockTermSettings.h │ │ ├── ScreenSizeLimitsTest.cpp │ │ ├── ScrollTest.cpp │ │ ├── SelectionTest.cpp │ │ ├── TerminalApiTest.cpp │ │ ├── TerminalBufferTests.cpp │ │ ├── TilWinRtHelpersTests.cpp │ │ ├── UnitTests.vcxproj │ │ ├── pch.cpp │ │ └── pch.h │ ├── WinRTUtils │ │ ├── LibraryResources.cpp │ │ ├── ScopedResourceLoader.cpp │ │ ├── Utils.cpp │ │ ├── WinRTUtils.vcxproj │ │ ├── WinRTUtils.vcxproj.filters │ │ ├── inc │ │ │ ├── LibraryResources.h │ │ │ ├── SafeDispatcherTimer.h │ │ │ ├── ScopedResourceLoader.h │ │ │ ├── ThrottledFunc.h │ │ │ ├── Utils.h │ │ │ └── WtExeUtils.h │ │ ├── pch.cpp │ │ └── pch.h │ ├── WindowsTerminal │ │ ├── AppHost.cpp │ │ ├── AppHost.h │ │ ├── BaseWindow.h │ │ ├── CustomWindowMessages.h │ │ ├── IslandWindow.cpp │ │ ├── IslandWindow.h │ │ ├── NonClientIslandWindow.cpp │ │ ├── NonClientIslandWindow.h │ │ ├── NotificationIcon.cpp │ │ ├── NotificationIcon.h │ │ ├── VirtualDesktopUtils.cpp │ │ ├── VirtualDesktopUtils.h │ │ ├── WindowEmperor.cpp │ │ ├── WindowEmperor.h │ │ ├── WindowThread.cpp │ │ ├── WindowThread.h │ │ ├── WindowsTerminal.def │ │ ├── WindowsTerminal.manifest │ │ ├── WindowsTerminal.rc │ │ ├── WindowsTerminal.vcxproj │ │ ├── icon.cpp │ │ ├── icon.h │ │ ├── main.cpp │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── resource.h │ ├── WindowsTerminal_UIATests │ │ ├── Common │ │ │ ├── Globals.cs │ │ │ ├── NativeMethods.cs │ │ │ └── PgoManager.cs │ │ ├── Elements │ │ │ └── TerminalApp.cs │ │ ├── Init.cs │ │ ├── SmokeTests.cs │ │ ├── WindowsTerminal.UIA.Tests.csproj │ │ └── app.config │ ├── WpfTerminalControl │ │ ├── ITerminalConnection.cs │ │ ├── NativeMethods.cs │ │ ├── TerminalContainer.cs │ │ ├── TerminalControl.xaml │ │ ├── TerminalControl.xaml.cs │ │ ├── TerminalOutputEventArgs.cs │ │ ├── TerminalTheme.cs │ │ ├── WpfTerminalControl.csproj │ │ └── stylecop.json │ ├── WpfTerminalTestNetCore │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── WpfTerminalTestNetCore.csproj │ │ └── app.manifest │ ├── inc │ │ ├── ControlProperties.h │ │ ├── WindowingBehavior.h │ │ └── cppwinrt_utils.h │ ├── ut_app │ │ ├── ColorHelperTests.cpp │ │ ├── JsonUtilsTests.cpp │ │ ├── TerminalApp.Unit.Tests.AppxManifest.xml │ │ ├── TerminalApp.Unit.Tests.manifest │ │ ├── TerminalApp.UnitTests.vcxproj │ │ ├── precomp.cpp │ │ └── precomp.h │ └── wt │ │ ├── resource.h │ │ ├── shim.cpp │ │ ├── wt.rc │ │ └── wt.vcxproj ├── common.build.post.props ├── common.build.pre.props ├── common.build.tests.props ├── common.nugetversions.props ├── common.nugetversions.targets ├── cppwinrt.build.post.props ├── cppwinrt.build.pre.props ├── dep │ ├── dirs │ └── fmt │ │ ├── fmt.vcxproj │ │ └── sources ├── dirs ├── features.xml ├── host │ ├── ApiRoutines.h │ ├── ConsoleArguments.cpp │ ├── ConsoleArguments.hpp │ ├── CursorBlinker.cpp │ ├── CursorBlinker.hpp │ ├── IIoProvider.hpp │ ├── PtySignalInputThread.cpp │ ├── PtySignalInputThread.hpp │ ├── VtApiRoutines.cpp │ ├── VtApiRoutines.h │ ├── VtInputThread.cpp │ ├── VtInputThread.hpp │ ├── VtIo.cpp │ ├── VtIo.hpp │ ├── _output.cpp │ ├── _output.h │ ├── _stream.cpp │ ├── _stream.h │ ├── alias.cpp │ ├── alias.h │ ├── cmdline.cpp │ ├── cmdline.h │ ├── conapi.h │ ├── conareainfo.cpp │ ├── conareainfo.h │ ├── conddkrefs.h │ ├── conhost.rcv │ ├── conhostv2_traceviewpp.tvpp │ ├── conimeinfo.cpp │ ├── conimeinfo.h │ ├── conserv.h │ ├── consoleInformation.cpp │ ├── conv.h │ ├── convarea.cpp │ ├── conwinuserrefs.h │ ├── dbcs.cpp │ ├── dbcs.h │ ├── directio.cpp │ ├── directio.h │ ├── dirs │ ├── exe │ │ ├── CConsoleHandoff.cpp │ │ ├── CConsoleHandoff.h │ │ ├── Conhost.exe.mui.lci │ │ ├── Host.EXE.rc │ │ ├── Host.EXE.vcxproj │ │ ├── Host.EXE.vcxproj.filters │ │ ├── SystemDefault.Manifest │ │ ├── conhost.exe.manifest │ │ ├── conhost.man │ │ ├── conhost.rcv │ │ ├── conhost.resources.man │ │ ├── console.ico │ │ ├── exemain.cpp │ │ ├── makefile.inc │ │ ├── openconsole.exe.manifest │ │ ├── product.pbxproj │ │ ├── resource.h │ │ ├── sources │ │ └── sources.dep │ ├── ft_fuzzer │ │ ├── Host.FuzzWrapper.vcxproj │ │ └── fuzzmain.cpp │ ├── ft_host │ │ ├── API_AliasTests.cpp │ │ ├── API_AliasTestsHelpers.hpp │ │ ├── API_BufferTests.cpp │ │ ├── API_CursorTests.cpp │ │ ├── API_DimensionsTests.cpp │ │ ├── API_FileTests.cpp │ │ ├── API_FillOutputTests.cpp │ │ ├── API_FontTests.cpp │ │ ├── API_InputTests.cpp │ │ ├── API_ModeTests.cpp │ │ ├── API_MultipleInflightMessageTests.cpp │ │ ├── API_OutputTests.cpp │ │ ├── API_PolicyTests.cpp │ │ ├── API_RgbColorTests.cpp │ │ ├── API_TitleTests.cpp │ │ ├── CJK_DbcsTests.cpp │ │ ├── CanaryTests.cpp │ │ ├── Common.cpp │ │ ├── Common.hpp │ │ ├── DefaultResource.rc │ │ ├── Host.FeatureTests.vcxproj │ │ ├── Host.FeatureTests.vcxproj.filters │ │ ├── Host.Tests.Feature.rc │ │ ├── InitTests.cpp │ │ ├── Message_KeyPressTests.cpp │ │ ├── OneCoreDelay.cpp │ │ ├── OneCoreDelay.hpp │ │ ├── chafa.txt │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── product.pbxproj │ │ ├── resource.h │ │ ├── runtest.bat │ │ ├── sources │ │ ├── sources.dep │ │ └── testmd.definition │ ├── ft_integrity │ │ ├── IntegrityTest.cpp │ │ ├── IntegrityTest.hpp │ │ ├── precomp.hpp │ │ ├── product.pbxproj │ │ ├── sources │ │ └── testmd.definition │ ├── ft_uia │ │ ├── AccessibilityTests.cs │ │ ├── CloseTests.cs │ │ ├── Common │ │ │ ├── AutoHelpers.cs │ │ │ ├── CheckBoxMeta.cs │ │ │ ├── Globals.cs │ │ │ ├── NativeMethods.cs │ │ │ ├── RegistryHelper.cs │ │ │ ├── ShortcutHelper.cs │ │ │ ├── SliderMeta.cs │ │ │ └── VersionSelector.cs │ │ ├── Elements │ │ │ ├── CmdApp.cs │ │ │ ├── ColorsTab.cs │ │ │ ├── FontTab.cs │ │ │ ├── LayoutTab.cs │ │ │ ├── OptionsTab.cs │ │ │ ├── PropertiesDialog.cs │ │ │ ├── TabBase.cs │ │ │ ├── Tabs.cs │ │ │ ├── ViewportArea.cs │ │ │ └── WinEventSystem.cs │ │ ├── ExperimentalTabTests.cs │ │ ├── Host.Tests.UIA.csproj │ │ ├── Init.cs │ │ ├── InputBufferTests.cs │ │ ├── KeyPressTests.cs │ │ ├── MiscTests.cs │ │ ├── MouseWheelTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SelectionApiTests.cs │ │ ├── VirtualTerminalTests.cs │ │ ├── WinEventTests.cs │ │ ├── app.config │ │ ├── product.pbxproj │ │ ├── run.bat │ │ ├── sources │ │ ├── sources.dep │ │ └── testmd.definition │ ├── getset.cpp │ ├── getset.h │ ├── globals.cpp │ ├── globals.h │ ├── handle.cpp │ ├── handle.h │ ├── history.cpp │ ├── history.h │ ├── host-common.vcxitems │ ├── init.cpp │ ├── init.hpp │ ├── input.cpp │ ├── input.h │ ├── inputBuffer.cpp │ ├── inputBuffer.hpp │ ├── inputKeyInfo.cpp │ ├── inputReadHandleData.cpp │ ├── inputReadHandleData.h │ ├── lib │ │ ├── hostlib.vcxproj │ │ ├── hostlib.vcxproj.filters │ │ ├── sources │ │ └── sources.dep │ ├── misc.cpp │ ├── misc.h │ ├── ntprivapi.cpp │ ├── ntprivapi.hpp │ ├── output.cpp │ ├── output.h │ ├── outputStream.cpp │ ├── outputStream.hpp │ ├── precomp.cpp │ ├── precomp.h │ ├── proxy │ │ ├── Host.Proxy.vcxproj │ │ ├── Host.Proxy.vcxproj.filters │ │ ├── IConsoleHandoff.idl │ │ ├── ITerminalHandoff.idl │ │ ├── OpenConsoleProxy.def │ │ ├── sources │ │ └── sources.dep │ ├── readData.cpp │ ├── readData.hpp │ ├── readDataCooked.cpp │ ├── readDataCooked.hpp │ ├── readDataDirect.cpp │ ├── readDataDirect.hpp │ ├── readDataRaw.cpp │ ├── readDataRaw.hpp │ ├── registry.cpp │ ├── registry.hpp │ ├── renderData.cpp │ ├── renderData.hpp │ ├── renderFontDefaults.cpp │ ├── renderFontDefaults.hpp │ ├── res.rc │ ├── resource.h │ ├── runft.bat │ ├── runtests.bat │ ├── runut.bat │ ├── screenInfo.cpp │ ├── screenInfo.hpp │ ├── scrolling.cpp │ ├── scrolling.hpp │ ├── selection.cpp │ ├── selection.hpp │ ├── selectionInput.cpp │ ├── selectionState.cpp │ ├── server.h │ ├── settings.cpp │ ├── settings.hpp │ ├── sources.inc │ ├── sources.test.inc │ ├── srvinit.cpp │ ├── srvinit.h │ ├── stream.cpp │ ├── stream.h │ ├── tracing.cpp │ ├── tracing.hpp │ ├── ut_host │ │ ├── AliasTests.cpp │ │ ├── ApiRoutinesTests.cpp │ │ ├── ClipboardTests.cpp │ │ ├── CodepointWidthDetectorTests.cpp │ │ ├── ConptyOutputTests.cpp │ │ ├── ConsoleArgumentsTests.cpp │ │ ├── DbcsTests.cpp │ │ ├── DefaultResource.rc │ │ ├── HistoryTests.cpp │ │ ├── Host.UnitTests.vcxproj │ │ ├── Host.UnitTests.vcxproj.filters │ │ ├── InitTests.cpp │ │ ├── InputBufferTests.cpp │ │ ├── ObjectTests.cpp │ │ ├── OutputCellIteratorTests.cpp │ │ ├── ScreenBufferTests.cpp │ │ ├── SearchTests.cpp │ │ ├── SelectionTests.cpp │ │ ├── TextBufferIteratorTests.cpp │ │ ├── TextBufferTests.cpp │ │ ├── TitleTests.cpp │ │ ├── UtilsTests.cpp │ │ ├── ViewportTests.cpp │ │ ├── VtIoTests.cpp │ │ ├── VtRendererTests.cpp │ │ ├── product.pbxproj │ │ ├── sources │ │ ├── sources.dep │ │ └── testmd.definition │ ├── ut_lib │ │ ├── host.unittest.vcxproj │ │ ├── sources │ │ └── sources.dep │ ├── utils.cpp │ ├── utils.hpp │ ├── writeData.cpp │ └── writeData.hpp ├── inc │ ├── CppCoreCheck │ │ └── warnings.h │ ├── DefaultSettings.h │ ├── HostAndPropsheetIncludes.h │ ├── HostSignals.hpp │ ├── LibraryIncludes.h │ ├── TestUtils.h │ ├── VtIoModes.hpp │ ├── WilErrorReporting.h │ ├── conattrs.hpp │ ├── conime.h │ ├── conint.h │ ├── conpty-static.h │ ├── conpty.h │ ├── consoletaeftemplates.hpp │ ├── contsf.h │ ├── cpl_core.h │ ├── test │ │ └── CommonState.hpp │ ├── til.h │ ├── til │ │ ├── at.h │ │ ├── atomic.h │ │ ├── bit.h │ │ ├── bitmap.h │ │ ├── bytes.h │ │ ├── coalesce.h │ │ ├── color.h │ │ ├── enumset.h │ │ ├── env.h │ │ ├── flat_set.h │ │ ├── generational.h │ │ ├── hash.h │ │ ├── latch.h │ │ ├── math.h │ │ ├── mutex.h │ │ ├── operators.h │ │ ├── pmr.h │ │ ├── point.h │ │ ├── rand.h │ │ ├── rect.h │ │ ├── replace.h │ │ ├── rle.h │ │ ├── size.h │ │ ├── small_vector.h │ │ ├── some.h │ │ ├── spsc.h │ │ ├── static_map.h │ │ ├── string.h │ │ ├── throttled_func.h │ │ ├── ticket_lock.h │ │ ├── type_traits.h │ │ ├── u8u16convert.h │ │ ├── unicode.h │ │ └── winrt.h │ ├── unicode.hpp │ └── winrtTaefTemplates.hpp ├── interactivity │ ├── base │ │ ├── ApiDetector.cpp │ │ ├── ApiDetector.hpp │ │ ├── EventSynthesis.cpp │ │ ├── HostSignalInputThread.cpp │ │ ├── HostSignalInputThread.hpp │ │ ├── InteractivityFactory.cpp │ │ ├── InteractivityFactory.hpp │ │ ├── PseudoConsoleWindowAccessibilityProvider.cpp │ │ ├── PseudoConsoleWindowAccessibilityProvider.hpp │ │ ├── RemoteConsoleControl.cpp │ │ ├── RemoteConsoleControl.hpp │ │ ├── ServiceLocator.cpp │ │ ├── VtApiRedirection.cpp │ │ ├── coninteractivitybase.rcv │ │ ├── dirs │ │ ├── lib │ │ │ ├── InteractivityBase.vcxproj │ │ │ ├── InteractivityBase.vcxproj.filters │ │ │ ├── product.pbxproj │ │ │ ├── sources │ │ │ └── sources.dep │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── res.rc │ │ └── sources.inc │ ├── dirs │ ├── inc │ │ ├── EventSynthesis.hpp │ │ ├── IAccessibilityNotifier.hpp │ │ ├── IConsoleControl.hpp │ │ ├── IConsoleInputThread.hpp │ │ ├── IConsoleWindow.hpp │ │ ├── IHighDpiApi.hpp │ │ ├── IInteractivityFactory.hpp │ │ ├── ISystemConfigurationProvider.hpp │ │ ├── IWindowMetrics.hpp │ │ ├── Module.hpp │ │ ├── ServiceLocator.hpp │ │ └── VtApiRedirection.hpp │ ├── onecore │ │ ├── AccessibilityNotifier.cpp │ │ ├── AccessibilityNotifier.hpp │ │ ├── BgfxEngine.cpp │ │ ├── BgfxEngine.hpp │ │ ├── ConIoSrvComm.cpp │ │ ├── ConIoSrvComm.hpp │ │ ├── ConsoleControl.cpp │ │ ├── ConsoleControl.hpp │ │ ├── ConsoleInputThread.cpp │ │ ├── ConsoleInputThread.hpp │ │ ├── ConsoleWindow.cpp │ │ ├── ConsoleWindow.hpp │ │ ├── SystemConfigurationProvider.cpp │ │ ├── SystemConfigurationProvider.hpp │ │ ├── WindowMetrics.cpp │ │ ├── WindowMetrics.hpp │ │ ├── coninteractivityonecore.rcv │ │ ├── dirs │ │ ├── lib │ │ │ ├── onecore.LIB.vcxproj │ │ │ ├── onecore.LIB.vcxproj.filters │ │ │ ├── sources │ │ │ └── sources.dep │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── res.rc │ │ └── sources.inc │ └── win32 │ │ ├── AccessibilityNotifier.cpp │ │ ├── AccessibilityNotifier.hpp │ │ ├── Clipboard.cpp │ │ ├── ConsoleControl.cpp │ │ ├── ConsoleControl.hpp │ │ ├── ConsoleInputThread.cpp │ │ ├── ConsoleInputThread.hpp │ │ ├── CustomWindowMessages.h │ │ ├── SystemConfigurationProvider.cpp │ │ ├── SystemConfigurationProvider.hpp │ │ ├── WindowIme.cpp │ │ ├── WindowMetrics.cpp │ │ ├── WindowMetrics.hpp │ │ ├── clipboard.hpp │ │ ├── coninteractivitywin32.rcv │ │ ├── consoleKeyInfo.cpp │ │ ├── consoleKeyInfo.hpp │ │ ├── dirs │ │ ├── find.cpp │ │ ├── find.h │ │ ├── icon.cpp │ │ ├── icon.hpp │ │ ├── lib │ │ ├── sources │ │ ├── sources.dep │ │ ├── win32.LIB.vcxproj │ │ └── win32.LIB.vcxproj.filters │ │ ├── menu.cpp │ │ ├── menu.hpp │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── res.rc │ │ ├── resource.h │ │ ├── screenInfoUiaProvider.cpp │ │ ├── screenInfoUiaProvider.hpp │ │ ├── sources.inc │ │ ├── uiaTextRange.cpp │ │ ├── uiaTextRange.hpp │ │ ├── ut_interactivity_win32 │ │ ├── DefaultResource.rc │ │ ├── GeneratedUiaTextRangeMovementTests.g.cpp │ │ ├── Interactivity.Win32.UnitTests.vcxproj │ │ ├── Interactivity.Win32.UnitTests.vcxproj.filters │ │ ├── UiaTextRangeTests.cpp │ │ ├── product.pbxproj │ │ ├── sources │ │ ├── sources.dep │ │ └── testmd.definition │ │ ├── window.cpp │ │ ├── window.hpp │ │ ├── windowUiaProvider.cpp │ │ ├── windowUiaProvider.hpp │ │ ├── windowdpiapi.cpp │ │ ├── windowdpiapi.hpp │ │ ├── windowime.hpp │ │ ├── windowio.cpp │ │ ├── windowio.hpp │ │ └── windowproc.cpp ├── internal │ ├── internal.vcxproj │ ├── precomp.cpp │ ├── precomp.h │ └── stubs.cpp ├── project.inc ├── project.unittest.inc ├── propsheet │ ├── ColorControl.cpp │ ├── ColorControl.h │ ├── ColorsPage.cpp │ ├── ColorsPage.h │ ├── LayoutPage.cpp │ ├── LayoutPage.h │ ├── OptionsPage.cpp │ ├── OptionsPage.h │ ├── PropSheetHandler.cpp │ ├── TerminalPropsheetPage.cpp │ ├── TerminalPropsheetPage.h │ ├── console.Resources.man │ ├── console.cpp │ ├── console.def │ ├── console.dll.mui.lci │ ├── console.h │ ├── console.man │ ├── console.rc │ ├── dbcs.cpp │ ├── dialogs.h │ ├── dll.cpp │ ├── font.h │ ├── fontdlg.cpp │ ├── fontdlg.h │ ├── globals.cpp │ ├── globals.h │ ├── init.cpp │ ├── menu.h │ ├── misc.cpp │ ├── precomp.cpp │ ├── precomp.h │ ├── preview.cpp │ ├── product.pbxproj │ ├── propsheet.vcxproj │ ├── propsheet.vcxproj.filters │ ├── registry.cpp │ ├── sources │ ├── sources.dep │ ├── strid.mc │ ├── util.cpp │ └── windowsshell.manifest ├── propslib │ ├── DelegationConfig.cpp │ ├── DelegationConfig.hpp │ ├── RegistrySerialization.cpp │ ├── RegistrySerialization.hpp │ ├── ShortcutSerialization.cpp │ ├── ShortcutSerialization.hpp │ ├── TrueTypeFontList.cpp │ ├── TrueTypeFontList.hpp │ ├── conpropsp.hpp │ ├── precomp.cpp │ ├── precomp.h │ ├── propslib.vcxproj │ ├── propslib.vcxproj.filters │ ├── sources │ └── sources.dep ├── renderer │ ├── atlas │ │ ├── AtlasEngine.api.cpp │ │ ├── AtlasEngine.cpp │ │ ├── AtlasEngine.h │ │ ├── AtlasEngine.r.cpp │ │ ├── Backend.cpp │ │ ├── Backend.h │ │ ├── BackendD2D.cpp │ │ ├── BackendD2D.h │ │ ├── BackendD3D.cpp │ │ ├── BackendD3D.h │ │ ├── BuiltinGlyphs.cpp │ │ ├── BuiltinGlyphs.h │ │ ├── DWriteTextAnalysis.cpp │ │ ├── DWriteTextAnalysis.h │ │ ├── README.md │ │ ├── atlas.vcxproj │ │ ├── colorbrewer.h │ │ ├── common.h │ │ ├── custom_shader_ps.hlsl │ │ ├── custom_shader_vs.hlsl │ │ ├── dwrite.cpp │ │ ├── dwrite.h │ │ ├── dwrite.hlsl │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── shader_common.hlsl │ │ ├── shader_ps.hlsl │ │ ├── shader_vs.hlsl │ │ ├── stb_rect_pack.cpp │ │ ├── wic.cpp │ │ └── wic.h │ ├── base │ │ ├── CSSLengthPercentage.cpp │ │ ├── FontCache.h │ │ ├── FontInfoBase.cpp │ │ ├── FontInfoDesired.cpp │ │ ├── FontResource.cpp │ │ ├── RenderEngineBase.cpp │ │ ├── RenderSettings.cpp │ │ ├── dirs │ │ ├── fontinfo.cpp │ │ ├── lib │ │ │ ├── base.vcxproj │ │ │ ├── base.vcxproj.filters │ │ │ ├── sources │ │ │ └── sources.dep │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── renderer.cpp │ │ ├── renderer.hpp │ │ ├── sources.inc │ │ ├── thread.cpp │ │ └── thread.hpp │ ├── dirs │ ├── gdi │ │ ├── dirs │ │ ├── gdirenderer.hpp │ │ ├── invalidate.cpp │ │ ├── lib │ │ │ ├── gdi.vcxproj │ │ │ ├── gdi.vcxproj.filters │ │ │ ├── sources │ │ │ └── sources.dep │ │ ├── math.cpp │ │ ├── paint.cpp │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── sources.inc │ │ ├── state.cpp │ │ └── tool │ │ │ └── main.cpp │ ├── inc │ │ ├── CSSLengthPercentage.h │ │ ├── Cluster.hpp │ │ ├── CursorOptions.h │ │ ├── DummyRenderer.hpp │ │ ├── FontInfo.hpp │ │ ├── FontInfoBase.hpp │ │ ├── FontInfoDesired.hpp │ │ ├── FontResource.hpp │ │ ├── IFontDefaultList.hpp │ │ ├── IRenderData.hpp │ │ ├── IRenderEngine.hpp │ │ ├── RenderEngineBase.hpp │ │ └── RenderSettings.hpp │ ├── uia │ │ ├── UiaRenderer.cpp │ │ ├── UiaRenderer.hpp │ │ ├── lib │ │ │ └── uia.vcxproj │ │ ├── precomp.cpp │ │ └── precomp.h │ ├── vt │ │ ├── VtSequences.cpp │ │ ├── Xterm256Engine.cpp │ │ ├── Xterm256Engine.hpp │ │ ├── XtermEngine.cpp │ │ ├── XtermEngine.hpp │ │ ├── dirs │ │ ├── invalidate.cpp │ │ ├── lib │ │ │ ├── sources │ │ │ ├── sources.dep │ │ │ ├── vt.vcxproj │ │ │ └── vt.vcxproj.filters │ │ ├── math.cpp │ │ ├── paint.cpp │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── sources.inc │ │ ├── state.cpp │ │ ├── tracing.cpp │ │ ├── tracing.hpp │ │ ├── ut_lib │ │ │ ├── sources │ │ │ ├── sources.dep │ │ │ └── vt.unittest.vcxproj │ │ ├── vt-renderer-common.vcxitems │ │ └── vtrenderer.hpp │ └── wddmcon │ │ ├── WddmConRenderer.cpp │ │ ├── WddmConRenderer.hpp │ │ ├── dirs │ │ ├── lib │ │ ├── sources │ │ ├── sources.dep │ │ ├── wddmcon.vcxproj │ │ └── wddmcon.vcxproj.filters │ │ ├── main.cxx │ │ ├── main.h │ │ ├── oss_shim.h │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ └── sources.inc ├── server │ ├── ApiDispatchers.cpp │ ├── ApiDispatchers.h │ ├── ApiDispatchersInternal.cpp │ ├── ApiMessage.cpp │ ├── ApiMessage.h │ ├── ApiMessageState.cpp │ ├── ApiMessageState.h │ ├── ApiSorter.cpp │ ├── ApiSorter.h │ ├── ConDrvDeviceComm.cpp │ ├── ConDrvDeviceComm.h │ ├── ConsoleShimPolicy.cpp │ ├── ConsoleShimPolicy.h │ ├── DeviceComm.h │ ├── DeviceHandle.cpp │ ├── DeviceHandle.h │ ├── Entrypoints.cpp │ ├── Entrypoints.h │ ├── IApiRoutines.h │ ├── IWaitRoutine.h │ ├── IoDispatchers.cpp │ ├── IoDispatchers.h │ ├── IoSorter.cpp │ ├── IoSorter.h │ ├── IoThread.h │ ├── ObjectHandle.cpp │ ├── ObjectHandle.h │ ├── ObjectHeader.cpp │ ├── ObjectHeader.h │ ├── ProcessHandle.cpp │ ├── ProcessHandle.h │ ├── ProcessList.cpp │ ├── ProcessList.h │ ├── ProcessPolicy.cpp │ ├── ProcessPolicy.h │ ├── WaitBlock.cpp │ ├── WaitBlock.h │ ├── WaitQueue.cpp │ ├── WaitQueue.h │ ├── WaitTerminationReason.h │ ├── WinNTControl.cpp │ ├── WinNTControl.h │ ├── dirs │ ├── lib │ │ ├── server.vcxproj │ │ ├── server.vcxproj.filters │ │ ├── sources │ │ └── sources.dep │ ├── precomp.cpp │ ├── precomp.h │ ├── sources.inc │ └── winbasep.h ├── staging │ ├── makefile.inc │ └── sources ├── terminal │ ├── adapter │ │ ├── DispatchTypes.hpp │ │ ├── FontBuffer.cpp │ │ ├── FontBuffer.hpp │ │ ├── IInteractDispatch.hpp │ │ ├── ITermDispatch.hpp │ │ ├── ITerminalApi.hpp │ │ ├── InteractDispatch.cpp │ │ ├── InteractDispatch.hpp │ │ ├── MacroBuffer.cpp │ │ ├── MacroBuffer.hpp │ │ ├── adaptDispatch.cpp │ │ ├── adaptDispatch.hpp │ │ ├── adaptDispatchGraphics.cpp │ │ ├── charsets.hpp │ │ ├── dirs │ │ ├── lib │ │ │ ├── adapter.vcxproj │ │ │ ├── adapter.vcxproj.filters │ │ │ ├── sources │ │ │ └── sources.dep │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── runtest.bat │ │ ├── sources.inc │ │ ├── termDispatch.hpp │ │ ├── terminalOutput.cpp │ │ ├── terminalOutput.hpp │ │ └── ut_adapter │ │ │ ├── Adapter.UnitTests.vcxproj │ │ │ ├── Adapter.UnitTests.vcxproj.filters │ │ │ ├── MouseInputTest.cpp │ │ │ ├── WexHelpers.hpp │ │ │ ├── adapterTest.cpp │ │ │ ├── inputTest.cpp │ │ │ ├── product.pbxproj │ │ │ ├── run.bat │ │ │ ├── sources │ │ │ ├── sources.dep │ │ │ └── testmd.definition │ ├── dirs │ ├── input │ │ ├── dirs │ │ ├── lib │ │ │ ├── sources │ │ │ ├── sources.dep │ │ │ └── terminalinput.vcxproj │ │ ├── mouseInput.cpp │ │ ├── mouseInputState.cpp │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── sources.inc │ │ ├── terminalInput.cpp │ │ └── terminalInput.hpp │ └── parser │ │ ├── IStateMachineEngine.hpp │ │ ├── InputStateMachineEngine.cpp │ │ ├── InputStateMachineEngine.hpp │ │ ├── OutputStateMachineEngine.cpp │ │ ├── OutputStateMachineEngine.hpp │ │ ├── ascii.hpp │ │ ├── base64.cpp │ │ ├── base64.hpp │ │ ├── delfuzzpayload.bat │ │ ├── dirs │ │ ├── ft_fuzzer │ │ ├── VTCommandFuzzer.cpp │ │ ├── VTCommandFuzzer.vcxproj │ │ ├── VTCommandFuzzer.vcxproj.filters │ │ ├── fuzzing_directed.h │ │ ├── fuzzing_logic.h │ │ ├── memallocator.h │ │ ├── run.bat │ │ ├── sources │ │ ├── sources.dep │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── string_helper.h │ │ ├── ft_fuzzwrapper │ │ ├── FuzzWrapper.vcxproj │ │ ├── FuzzWrapper.vcxproj.filters │ │ ├── apple.ans │ │ ├── colortest.bat │ │ ├── echoDispatch.cpp │ │ ├── echoDispatch.hpp │ │ ├── main.cpp │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── run.bat │ │ ├── sources │ │ └── sources.dep │ │ ├── lib │ │ ├── parser.vcxproj │ │ ├── parser.vcxproj.filters │ │ ├── sources │ │ └── sources.dep │ │ ├── parser-common.vcxitems │ │ ├── precomp.cpp │ │ ├── precomp.h │ │ ├── runfuzz.bat │ │ ├── runtest.bat │ │ ├── sources.inc │ │ ├── stateMachine.cpp │ │ ├── stateMachine.hpp │ │ ├── tracing.cpp │ │ ├── tracing.hpp │ │ └── ut_parser │ │ ├── Base64Test.cpp │ │ ├── InputEngineTest.cpp │ │ ├── OutputEngineTest.cpp │ │ ├── Parser.UnitTests.vcxproj │ │ ├── Parser.UnitTests.vcxproj.filters │ │ ├── StateMachineTest.cpp │ │ ├── product.pbxproj │ │ ├── run.bat │ │ ├── sources │ │ ├── sources.dep │ │ └── testmd.definition ├── testlist │ ├── Microsoft.Console.TestLab.Desktop.testlist │ ├── Microsoft.Console.TestLab.OneCoreUap.testlist │ ├── Microsoft.Console.TestLab.Performance.testlist │ ├── Microsoft.Console.Tests.DesktopOnly.testlist │ ├── Microsoft.Console.Tests.testlist │ └── sources ├── til │ ├── dirs │ ├── precomp.cpp │ ├── precomp.h │ └── ut_til │ │ ├── BaseTests.cpp │ │ ├── BitmapTests.cpp │ │ ├── CoalesceTests.cpp │ │ ├── ColorTests.cpp │ │ ├── DefaultResource.rc │ │ ├── EnumSetTests.cpp │ │ ├── EnvTests.cpp │ │ ├── FlatSetTests.cpp │ │ ├── GenerationalTests.cpp │ │ ├── HashTests.cpp │ │ ├── MathTests.cpp │ │ ├── OperatorTests.cpp │ │ ├── PointTests.cpp │ │ ├── RectangleTests.cpp │ │ ├── ReplaceTests.cpp │ │ ├── RunLengthEncodingTests.cpp │ │ ├── SPSCTests.cpp │ │ ├── SizeTests.cpp │ │ ├── SmallVectorTests.cpp │ │ ├── SomeTests.cpp │ │ ├── StaticMapTests.cpp │ │ ├── UnicodeTests.cpp │ │ ├── mutex.cpp │ │ ├── product.pbxproj │ │ ├── sources │ │ ├── sources.dep │ │ ├── string.cpp │ │ ├── throttled_func.cpp │ │ ├── til.unit.tests.vcxproj │ │ ├── til.unit.tests.vcxproj.filters │ │ └── u8u16convertTests.cpp ├── tools │ ├── ColorTool │ │ ├── ColorTool.sln │ │ ├── ColorTool │ │ │ ├── App.config │ │ │ ├── ColorScheme.cs │ │ │ ├── ColorTable.cs │ │ │ ├── ColorTool.csproj │ │ │ ├── ConsoleAPI.cs │ │ │ ├── ConsoleAttributes.cs │ │ │ ├── ConsoleTargets │ │ │ │ ├── CurrentConsoleTarget.cs │ │ │ │ ├── DefaultConsoleTarget.cs │ │ │ │ ├── IConsoleTarget.cs │ │ │ │ ├── TerminalSchemeConsoleTarget.cs │ │ │ │ └── VirtualTerminalConsoleTarget.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── SchemeManager.cs │ │ │ ├── SchemeParsers │ │ │ │ ├── ISchemeParser.cs │ │ │ │ ├── IniSchemeParser.cs │ │ │ │ ├── JsonParser.cs │ │ │ │ ├── SchemeParserBase.cs │ │ │ │ └── XmlSchemeParser.cs │ │ │ └── SchemeWriters │ │ │ │ └── IniSchemeWriter.cs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ThirdPartyNotices.md │ │ ├── all.bat │ │ ├── build.bat │ │ ├── schemes │ │ │ ├── OneHalfDark.itermcolors │ │ │ ├── OneHalfLight.itermcolors │ │ │ ├── campbell-absolute.ini │ │ │ ├── campbell-legacy.ini │ │ │ ├── campbell.ini │ │ │ ├── cmd-legacy.ini │ │ │ ├── deuteranopia.itermcolors │ │ │ ├── solarized_dark.itermcolors │ │ │ ├── solarized_light.itermcolors │ │ │ ├── tango_dark.itermcolors │ │ │ └── tango_light.itermcolors │ │ └── signing │ │ │ ├── CopySignFiles.cmd │ │ │ └── SignConfig.xml │ ├── ConsoleBench │ │ ├── ConsoleBench.vcxproj │ │ ├── ConsoleBench.vcxproj.filters │ │ ├── arena.cpp │ │ ├── arena.h │ │ ├── conhost.cpp │ │ ├── conhost.h │ │ ├── main.cpp │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── utils.cpp │ │ └── utils.h │ ├── ConsoleMonitor │ │ ├── ConsoleMonitor.exe.manifest │ │ ├── ConsoleMonitor.vcxproj │ │ ├── ConsoleMonitor.vcxproj.filters │ │ ├── main.cpp │ │ ├── pch.cpp │ │ └── pch.h │ ├── MonarchPeasantPackage │ │ ├── Images │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── MonarchPeasantPackage.wapproj │ │ └── Package.appxmanifest │ ├── MonarchPeasantSample │ │ ├── AppState.cpp │ │ ├── AppState.h │ │ ├── MonarchMain.cpp │ │ ├── MonarchPeasantSample.vcxproj │ │ ├── PeasantMain.cpp │ │ ├── PropertySheet.props │ │ ├── README.md │ │ ├── SampleMonarch.cpp │ │ ├── SampleMonarch.h │ │ ├── SampleMonarch.idl │ │ ├── SamplePeasant.cpp │ │ ├── SamplePeasant.h │ │ ├── SamplePeasant.idl │ │ ├── main.cpp │ │ ├── monarch-peasant-sample-000.gif │ │ ├── pch.cpp │ │ └── pch.h │ ├── RenderingTests │ │ ├── RenderingTests.vcxproj │ │ ├── RenderingTests.vcxproj.filters │ │ └── main.cpp │ ├── TerminalStress │ │ ├── Program.cs │ │ └── TerminalStress.csproj │ ├── U8U16Test │ │ ├── U8U16Test.cpp │ │ ├── U8U16Test.hpp │ │ ├── U8U16Test.vcxproj │ │ ├── U8U16Test.vcxproj.filters │ │ ├── _test.cmd │ │ ├── en.txt │ │ ├── fr.txt │ │ ├── main.cpp │ │ ├── ru.txt │ │ └── zh.txt │ ├── ansi-color │ │ ├── README.md │ │ ├── ansi-color.cmd │ │ ├── ansi-colortool.def │ │ ├── attrib.def │ │ ├── colortest.def │ │ ├── colortool.def │ │ ├── crisman.def │ │ ├── fgbg.def │ │ ├── lbl.def │ │ ├── plaid.def │ │ ├── rainbow.def │ │ ├── rosetta.def │ │ ├── separator.def │ │ ├── sgr-intensity.def │ │ ├── sgr.def │ │ ├── tsgr.def │ │ └── ubuntu.def │ ├── benchcat │ │ ├── benchcat.vcxproj │ │ ├── crt.cpp │ │ └── main.cpp │ ├── buffersize │ │ ├── buffersize.vcxproj │ │ ├── buffersize.vcxproj.filters │ │ └── main.cpp │ ├── closetest │ │ ├── CloseTest.vcxproj │ │ ├── CloseTest.vcxproj.filters │ │ ├── closetest.cpp │ │ ├── res.rc │ │ └── sources │ ├── dirs │ ├── echokey │ │ ├── ConEchoKey.vcxproj │ │ ├── main.cpp │ │ ├── res.rc │ │ └── sources │ ├── fontlist │ │ ├── FontList.vcxproj │ │ ├── FontList.vcxproj.filters │ │ └── main.cpp │ ├── integrity │ │ ├── dirs │ │ ├── exeuwp │ │ │ ├── DefaultResource.rc │ │ │ ├── consoleuwp.cpp │ │ │ └── sources │ │ ├── exewin32 │ │ │ ├── Sources.pkg.xml │ │ │ ├── main.cpp │ │ │ ├── product.pbxproj │ │ │ ├── res.rc │ │ │ └── sources │ │ ├── lib │ │ │ ├── sources │ │ │ ├── util.cpp │ │ │ └── util.h │ │ └── packageuwp │ │ │ ├── ConsoleUWP.appxSources │ │ │ ├── Sources.pkg.xml │ │ │ ├── assets │ │ │ ├── AppList.scale-100.png │ │ │ ├── AppList.targetsize-16.png │ │ │ ├── AppList.targetsize-256.png │ │ │ ├── AppList.targetsize-32.png │ │ │ ├── AppList.targetsize-48.png │ │ │ ├── Default_User_Tile.scale-100.png │ │ │ ├── LargeLogo.scale-100.png │ │ │ ├── Logo.scale-100.png │ │ │ ├── SmallLogo.scale-100.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ └── WideLogo.scale-100.png │ │ │ ├── package.appxmanifest │ │ │ ├── product.pbxproj │ │ │ ├── sources │ │ │ └── sources.dep │ ├── lnkd │ │ ├── lnkd.bat │ │ ├── main.cpp │ │ ├── precomp.h │ │ ├── res.rc │ │ └── sources │ ├── nihilist │ │ ├── Nihilist.vcxproj │ │ ├── Nihilist.vcxproj.filters │ │ ├── Sources.pkg.xml │ │ ├── main.cpp │ │ ├── product.pbxproj │ │ ├── res.rc │ │ └── sources │ ├── pixels │ │ ├── main.cpp │ │ ├── pixels.bat │ │ ├── precomp.h │ │ ├── res.rc │ │ └── sources │ ├── scratch │ │ ├── Scratch.vcxproj │ │ ├── Scratch.vcxproj.filters │ │ └── main.cpp │ ├── test │ │ ├── main.cpp │ │ ├── precomp.h │ │ ├── res.rc │ │ └── sources │ ├── texttests │ │ ├── fira.txt │ │ └── foo.txt │ ├── vtapp │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Program2.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── AssemblyInfoVsSpecific.cs │ │ ├── Sources.pkg.xml │ │ ├── VTApp.csproj │ │ ├── product.pbxproj │ │ └── sources │ ├── vtpipeterm │ │ ├── VtConsole.cpp │ │ ├── VtConsole.hpp │ │ ├── VtPipeTerm.vcxproj │ │ ├── VtPipeTerm.vcxproj.filters │ │ ├── main.cpp │ │ ├── res.rc │ │ └── sources │ └── vttests │ │ ├── burrito.py │ │ ├── common.py │ │ ├── template.py │ │ └── test-unicode.py ├── tsf │ ├── ConsoleTSF.cpp │ ├── ConsoleTSF.h │ ├── TfCatUtil.cpp │ ├── TfCatUtil.h │ ├── TfConvArea.cpp │ ├── TfConvArea.h │ ├── TfCtxtComp.h │ ├── TfDispAttr.cpp │ ├── TfDispAttr.h │ ├── TfEditSession.cpp │ ├── TfEditSession.h │ ├── TfTxtevCb.cpp │ ├── contsf.cpp │ ├── globals.h │ ├── precomp.cpp │ ├── precomp.h │ ├── sources │ ├── sources.dep │ ├── tsf.vcxproj │ └── tsf.vcxproj.filters ├── types │ ├── CodepointWidthDetector.cpp │ ├── ColorFix.cpp │ ├── GlyphWidth.cpp │ ├── IControlAccessibilityInfo.h │ ├── IUiaEventDispatcher.h │ ├── IUiaTraceable.h │ ├── ScreenInfoUiaProviderBase.cpp │ ├── ScreenInfoUiaProviderBase.h │ ├── TermControlUiaProvider.cpp │ ├── TermControlUiaProvider.hpp │ ├── TermControlUiaTextRange.cpp │ ├── TermControlUiaTextRange.hpp │ ├── ThemeUtils.cpp │ ├── UiaTextRangeBase.cpp │ ├── UiaTextRangeBase.hpp │ ├── UiaTracing.cpp │ ├── UiaTracing.h │ ├── colorTable.cpp │ ├── convert.cpp │ ├── dirs │ ├── inc │ │ ├── CodepointWidthDetector.hpp │ │ ├── ColorFix.hpp │ │ ├── GlyphWidth.hpp │ │ ├── IInputEvent.hpp │ │ ├── ThemeUtils.h │ │ ├── User32Utils.hpp │ │ ├── colorTable.hpp │ │ ├── convert.hpp │ │ ├── sgrStack.hpp │ │ ├── utils.hpp │ │ └── viewport.hpp │ ├── lib │ │ ├── sources │ │ ├── sources.dep │ │ ├── types.vcxproj │ │ └── types.vcxproj.filters │ ├── precomp.cpp │ ├── precomp.h │ ├── sgrStack.cpp │ ├── sources.inc │ ├── unicode_width_overrides.xml │ ├── ut_types │ │ ├── DefaultResource.rc │ │ ├── Types.Unit.Tests.vcxproj │ │ ├── UtilsTests.cpp │ │ ├── UuidTests.cpp │ │ ├── product.pbxproj │ │ ├── sources │ │ └── sources.dep │ ├── utils.cpp │ └── viewport.cpp ├── unit.tests.x64.runsettings ├── unit.tests.x86.runsettings ├── wap-common.build.post.props ├── wap-common.build.pre.props └── winconpty │ ├── device.h │ ├── dll │ ├── winconpty.def │ └── winconptydll.vcxproj │ ├── ft_pty │ ├── ConPtyTests.cpp │ ├── precomp.cpp │ ├── precomp.h │ └── winconpty.FeatureTests.vcxproj │ ├── lib │ └── winconptylib.vcxproj │ ├── package │ ├── managed │ │ ├── Microsoft.Windows.Console.ConPTY.props │ │ └── Microsoft.Windows.Console.ConPTY.targets │ ├── native │ │ ├── Microsoft.Windows.Console.ConPTY.props │ │ └── Microsoft.Windows.Console.ConPTY.targets │ └── winconpty.nuspec │ ├── precomp.cpp │ ├── precomp.h │ ├── winconpty.cpp │ └── winconpty.h └── tools ├── CheckPSVersion.ps1 ├── CompressJson.ps1 ├── ConsoleTypes.natvis ├── FeatureStagingSchema.xsd ├── Generate-CodepointWidthsFromUCD.ps1 ├── Generate-FeatureStagingHeader.ps1 ├── GenerateAppxFromManifest.ps1 ├── GenerateHeaderForJson.ps1 ├── Get-OSSConhostLog.ps1 ├── OpenConsole.psm1 ├── README.md ├── ReleaseEngineering ├── Draft-TerminalReleases.ps1 ├── New-TerminalStackedChangelog.ps1 └── ServicingPipeline.ps1 ├── TestTableWriter ├── GenerateTests.ps1 ├── README.md └── UiaTests.csv ├── WindbgExtension.js ├── WindowsCheckPSVersion.ps1 ├── bcx.cmd ├── bcz.cmd ├── bx.cmd ├── bx.ps1 ├── bz.cmd ├── echokey.cmd ├── openbash.cmd ├── opencon.cmd ├── openps.cmd ├── openvt.cmd ├── packages.config ├── razzle.cmd ├── runformat.cmd ├── runft.cmd ├── runuia.cmd ├── runut.cmd ├── runxamlformat.cmd ├── testcon.cmd ├── tests.xml └── vso_ut.cmd /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.clang-format -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/spelling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.github/actions/spelling/README.md -------------------------------------------------------------------------------- /.github/actions/spelling/advice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.github/actions/spelling/advice.md -------------------------------------------------------------------------------- /.github/actions/spelling/allow/japanese.txt: -------------------------------------------------------------------------------- 1 | arigatoo 2 | doomo 3 | Kaomojis 4 | TATEGAKI 5 | -------------------------------------------------------------------------------- /.github/actions/spelling/expect/web.txt: -------------------------------------------------------------------------------- 1 | winui 2 | appshellintegration 3 | mdtauk 4 | gfycat 5 | Guake 6 | xkcd 7 | -------------------------------------------------------------------------------- /.github/actions/spelling/reject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.github/actions/spelling/reject.txt -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/workflows/addToProject.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.github/workflows/addToProject.yml -------------------------------------------------------------------------------- /.github/workflows/similarIssues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.github/workflows/similarIssues.yml -------------------------------------------------------------------------------- /.github/workflows/spelling2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.github/workflows/spelling2.yml -------------------------------------------------------------------------------- /.github/workflows/winget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.github/workflows/winget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.gitmodules -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/.vsconfig -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/NOTICE.md -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/NuGet.Config -------------------------------------------------------------------------------- /OpenConsole.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/OpenConsole.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /Scratch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/Scratch.sln -------------------------------------------------------------------------------- /XamlStyler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/XamlStyler.json -------------------------------------------------------------------------------- /common.openconsole.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/common.openconsole.props -------------------------------------------------------------------------------- /consolegit2gitfilters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/consolegit2gitfilters.json -------------------------------------------------------------------------------- /custom.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/custom.props -------------------------------------------------------------------------------- /dep/CLI11/CLI11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/CLI11/CLI11.hpp -------------------------------------------------------------------------------- /dep/CLI11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/CLI11/README.md -------------------------------------------------------------------------------- /dep/CLI11/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/CLI11/cgmanifest.json -------------------------------------------------------------------------------- /dep/Console/ConIoSrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/ConIoSrv.h -------------------------------------------------------------------------------- /dep/Console/conapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/conapi.h -------------------------------------------------------------------------------- /dep/Console/condrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/condrv.h -------------------------------------------------------------------------------- /dep/Console/conmsgl1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/conmsgl1.h -------------------------------------------------------------------------------- /dep/Console/conmsgl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/conmsgl2.h -------------------------------------------------------------------------------- /dep/Console/conmsgl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/conmsgl3.h -------------------------------------------------------------------------------- /dep/Console/csrmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/csrmsg.h -------------------------------------------------------------------------------- /dep/Console/ntcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/ntcon.h -------------------------------------------------------------------------------- /dep/Console/ntcsrdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/ntcsrdll.h -------------------------------------------------------------------------------- /dep/Console/ntcsrmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/ntcsrmsg.h -------------------------------------------------------------------------------- /dep/Console/ntlpcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/ntlpcapi.h -------------------------------------------------------------------------------- /dep/Console/winconp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Console/winconp.h -------------------------------------------------------------------------------- /dep/NT/ntioapi_x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/NT/ntioapi_x.h -------------------------------------------------------------------------------- /dep/Win32K/winuserp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/Win32K/winuserp.h -------------------------------------------------------------------------------- /dep/WinAppDriver/EULA.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/WinAppDriver/EULA.rtf -------------------------------------------------------------------------------- /dep/WinAppDriver/MitaBroker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/WinAppDriver/MitaBroker.dll -------------------------------------------------------------------------------- /dep/WinAppDriver/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/WinAppDriver/Readme.txt -------------------------------------------------------------------------------- /dep/WinAppDriver/WinAppDriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/WinAppDriver/WinAppDriver.exe -------------------------------------------------------------------------------- /dep/WinAppDriver/cpprest140_2_8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/WinAppDriver/cpprest140_2_8.dll -------------------------------------------------------------------------------- /dep/jsoncpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/jsoncpp/README.md -------------------------------------------------------------------------------- /dep/jsoncpp/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/jsoncpp/cgmanifest.json -------------------------------------------------------------------------------- /dep/jsoncpp/json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/jsoncpp/json/json-forwards.h -------------------------------------------------------------------------------- /dep/jsoncpp/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/jsoncpp/json/json.h -------------------------------------------------------------------------------- /dep/jsoncpp/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/jsoncpp/jsoncpp.cpp -------------------------------------------------------------------------------- /dep/nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/nuget/nuget.exe -------------------------------------------------------------------------------- /dep/nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/nuget/packages.config -------------------------------------------------------------------------------- /dep/telemetry/ProjectTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dep/telemetry/ProjectTelemetry.h -------------------------------------------------------------------------------- /dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/dirs -------------------------------------------------------------------------------- /doc/AddASetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/AddASetting.md -------------------------------------------------------------------------------- /doc/COOKED_READ_DATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/COOKED_READ_DATA.md -------------------------------------------------------------------------------- /doc/ConsoleCtrlEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/ConsoleCtrlEvent.md -------------------------------------------------------------------------------- /doc/ConsoleHostSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/ConsoleHostSettings.md -------------------------------------------------------------------------------- /doc/Debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/Debugging.md -------------------------------------------------------------------------------- /doc/EXCEPTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/EXCEPTIONS.md -------------------------------------------------------------------------------- /doc/Niksa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/Niksa.md -------------------------------------------------------------------------------- /doc/ORGANIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/ORGANIZATION.md -------------------------------------------------------------------------------- /doc/STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/STYLE.md -------------------------------------------------------------------------------- /doc/TAEF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/TAEF.md -------------------------------------------------------------------------------- /doc/UniversalTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/UniversalTest.md -------------------------------------------------------------------------------- /doc/WIL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/WIL.md -------------------------------------------------------------------------------- /doc/WindowsTestPasses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/WindowsTestPasses.md -------------------------------------------------------------------------------- /doc/bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/bot.md -------------------------------------------------------------------------------- /doc/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/building.md -------------------------------------------------------------------------------- /doc/cascadia/AddASetting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/cascadia/AddASetting.md -------------------------------------------------------------------------------- /doc/cascadia/Json-Utility-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/cascadia/Json-Utility-API.md -------------------------------------------------------------------------------- /doc/cascadia/SettingsSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/cascadia/SettingsSchema.md -------------------------------------------------------------------------------- /doc/cascadia/profiles.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/cascadia/profiles.schema.json -------------------------------------------------------------------------------- /doc/color_nudging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/color_nudging.html -------------------------------------------------------------------------------- /doc/creating_a_new_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/creating_a_new_project.md -------------------------------------------------------------------------------- /doc/feature_flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/feature_flags.md -------------------------------------------------------------------------------- /doc/fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/fuzzing.md -------------------------------------------------------------------------------- /doc/images/new-issue-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/images/new-issue-template.png -------------------------------------------------------------------------------- /doc/images/panes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/images/panes.png -------------------------------------------------------------------------------- /doc/images/solution-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/images/solution-platform.png -------------------------------------------------------------------------------- /doc/images/terminal-0.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/images/terminal-0.6.png -------------------------------------------------------------------------------- /doc/images/terminal-mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/images/terminal-mockup.png -------------------------------------------------------------------------------- /doc/reference/UTF8-torture-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/reference/UTF8-torture-test.txt -------------------------------------------------------------------------------- /doc/reference/customtextlayout.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/reference/customtextlayout.xlsx -------------------------------------------------------------------------------- /doc/roadmap-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/roadmap-2022.md -------------------------------------------------------------------------------- /doc/roadmap-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/roadmap-2023.md -------------------------------------------------------------------------------- /doc/specs/#597 - Tab Sizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/specs/#597 - Tab Sizing.md -------------------------------------------------------------------------------- /doc/specs/#605 - Search/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/specs/#605 - Search/spec.md -------------------------------------------------------------------------------- /doc/specs/#980 - SnapOnOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/specs/#980 - SnapOnOutput.md -------------------------------------------------------------------------------- /doc/specs/Keybindings-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/specs/Keybindings-spec.md -------------------------------------------------------------------------------- /doc/specs/Proto extensions-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/specs/Proto extensions-spec.md -------------------------------------------------------------------------------- /doc/specs/TerminalSettings-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/specs/TerminalSettings-spec.md -------------------------------------------------------------------------------- /doc/specs/portable-mode-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/specs/portable-mode-spec.md -------------------------------------------------------------------------------- /doc/specs/settings-spec-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/specs/settings-spec-template.md -------------------------------------------------------------------------------- /doc/specs/spec-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/specs/spec-template.md -------------------------------------------------------------------------------- /doc/submitting_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/submitting_code.md -------------------------------------------------------------------------------- /doc/terminal-a11y-2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/terminal-a11y-2023.md -------------------------------------------------------------------------------- /doc/terminal-v1-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/terminal-v1-roadmap.md -------------------------------------------------------------------------------- /doc/terminal-v2-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/terminal-v2-roadmap.md -------------------------------------------------------------------------------- /doc/user-docs/UsingJsonSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/user-docs/UsingJsonSettings.md -------------------------------------------------------------------------------- /doc/user-docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/user-docs/index.md -------------------------------------------------------------------------------- /doc/virtual-dtors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/doc/virtual-dtors.md -------------------------------------------------------------------------------- /oss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/README.md -------------------------------------------------------------------------------- /oss/chromium/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/chromium/LICENSE -------------------------------------------------------------------------------- /oss/chromium/MAINTAINER_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/chromium/MAINTAINER_README.md -------------------------------------------------------------------------------- /oss/chromium/base/numerics/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/chromium/base/numerics/BUILD.gn -------------------------------------------------------------------------------- /oss/chromium/base/numerics/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/chromium/base/numerics/DEPS -------------------------------------------------------------------------------- /oss/chromium/base/numerics/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/chromium/base/numerics/OWNERS -------------------------------------------------------------------------------- /oss/chromium/base/numerics/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/chromium/base/numerics/ranges.h -------------------------------------------------------------------------------- /oss/chromium/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/chromium/cgmanifest.json -------------------------------------------------------------------------------- /oss/dynamic_bitset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/dynamic_bitset/LICENSE -------------------------------------------------------------------------------- /oss/dynamic_bitset/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/dynamic_bitset/cgmanifest.json -------------------------------------------------------------------------------- /oss/fmt/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/LICENSE.rst -------------------------------------------------------------------------------- /oss/fmt/MAINTAINER_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/MAINTAINER_README.md -------------------------------------------------------------------------------- /oss/fmt/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/cgmanifest.json -------------------------------------------------------------------------------- /oss/fmt/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/chrono.h -------------------------------------------------------------------------------- /oss/fmt/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/color.h -------------------------------------------------------------------------------- /oss/fmt/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/compile.h -------------------------------------------------------------------------------- /oss/fmt/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/core.h -------------------------------------------------------------------------------- /oss/fmt/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/format-inl.h -------------------------------------------------------------------------------- /oss/fmt/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/format.h -------------------------------------------------------------------------------- /oss/fmt/include/fmt/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/locale.h -------------------------------------------------------------------------------- /oss/fmt/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/os.h -------------------------------------------------------------------------------- /oss/fmt/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/ostream.h -------------------------------------------------------------------------------- /oss/fmt/include/fmt/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/posix.h -------------------------------------------------------------------------------- /oss/fmt/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/printf.h -------------------------------------------------------------------------------- /oss/fmt/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/include/fmt/ranges.h -------------------------------------------------------------------------------- /oss/fmt/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/src/format.cc -------------------------------------------------------------------------------- /oss/fmt/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/fmt/src/os.cc -------------------------------------------------------------------------------- /oss/interval_tree/IntervalTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/interval_tree/IntervalTree.h -------------------------------------------------------------------------------- /oss/interval_tree/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/interval_tree/cgmanifest.json -------------------------------------------------------------------------------- /oss/libpopcnt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/libpopcnt/LICENSE -------------------------------------------------------------------------------- /oss/libpopcnt/MAINTAINER_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/libpopcnt/MAINTAINER_README.md -------------------------------------------------------------------------------- /oss/libpopcnt/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/libpopcnt/cgmanifest.json -------------------------------------------------------------------------------- /oss/libpopcnt/libpopcnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/libpopcnt/libpopcnt.h -------------------------------------------------------------------------------- /oss/pcg/LICENSE-APACHE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/pcg/LICENSE-APACHE.txt -------------------------------------------------------------------------------- /oss/pcg/LICENSE-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/pcg/LICENSE-MIT.txt -------------------------------------------------------------------------------- /oss/pcg/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/pcg/cgmanifest.json -------------------------------------------------------------------------------- /oss/pcg/include/pcg_random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/pcg/include/pcg_random.hpp -------------------------------------------------------------------------------- /oss/stb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/stb/LICENSE -------------------------------------------------------------------------------- /oss/stb/MAINTAINER_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/stb/MAINTAINER_README.md -------------------------------------------------------------------------------- /oss/stb/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/stb/cgmanifest.json -------------------------------------------------------------------------------- /oss/stb/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/stb/stb_rect_pack.h -------------------------------------------------------------------------------- /oss/wyhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/wyhash/LICENSE -------------------------------------------------------------------------------- /oss/wyhash/MAINTAINER_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/wyhash/MAINTAINER_README.md -------------------------------------------------------------------------------- /oss/wyhash/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/wyhash/cgmanifest.json -------------------------------------------------------------------------------- /oss/xorg_apps_rgb/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/oss/xorg_apps_rgb/cgmanifest.json -------------------------------------------------------------------------------- /res/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/LICENSE -------------------------------------------------------------------------------- /res/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/README.md -------------------------------------------------------------------------------- /res/console.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/console.ico -------------------------------------------------------------------------------- /res/fonts/CascadiaCode.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/fonts/CascadiaCode.ttf -------------------------------------------------------------------------------- /res/fonts/CascadiaCodeItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/fonts/CascadiaCodeItalic.ttf -------------------------------------------------------------------------------- /res/fonts/CascadiaMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/fonts/CascadiaMono.ttf -------------------------------------------------------------------------------- /res/fonts/CascadiaMonoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/fonts/CascadiaMonoItalic.ttf -------------------------------------------------------------------------------- /res/fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/fonts/README.md -------------------------------------------------------------------------------- /res/terminal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/terminal.ico -------------------------------------------------------------------------------- /res/terminal/Terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/terminal/Terminal.svg -------------------------------------------------------------------------------- /res/terminal/Terminal_Can.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/terminal/Terminal_Can.svg -------------------------------------------------------------------------------- /res/terminal/Terminal_Can_HC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/terminal/Terminal_Can_HC.svg -------------------------------------------------------------------------------- /res/terminal/Terminal_Dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/terminal/Terminal_Dev.svg -------------------------------------------------------------------------------- /res/terminal/Terminal_Dev_HC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/terminal/Terminal_Dev_HC.svg -------------------------------------------------------------------------------- /res/terminal/Terminal_HC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/terminal/Terminal_HC.svg -------------------------------------------------------------------------------- /res/terminal/Terminal_Pre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/terminal/Terminal_Pre.svg -------------------------------------------------------------------------------- /res/terminal/Terminal_Pre_HC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/terminal/Terminal_Pre_HC.svg -------------------------------------------------------------------------------- /res/truetype.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/res/truetype.bmp -------------------------------------------------------------------------------- /samples/ConPTY/EchoCon/EchoCon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/ConPTY/EchoCon/EchoCon.sln -------------------------------------------------------------------------------- /samples/ConPTY/EchoCon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/ConPTY/EchoCon/readme.md -------------------------------------------------------------------------------- /samples/ConPTY/GUIConsole/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/ConPTY/GUIConsole/README.md -------------------------------------------------------------------------------- /samples/ConPTY/MiniTerm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/ConPTY/MiniTerm/README.md -------------------------------------------------------------------------------- /samples/PixelShaders/Broken.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/PixelShaders/Broken.hlsl -------------------------------------------------------------------------------- /samples/PixelShaders/Error.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/PixelShaders/Error.hlsl -------------------------------------------------------------------------------- /samples/PixelShaders/Grayscale.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/PixelShaders/Grayscale.hlsl -------------------------------------------------------------------------------- /samples/PixelShaders/Invert.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/PixelShaders/Invert.hlsl -------------------------------------------------------------------------------- /samples/PixelShaders/Nop.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/PixelShaders/Nop.hlsl -------------------------------------------------------------------------------- /samples/PixelShaders/Outlines.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/PixelShaders/Outlines.hlsl -------------------------------------------------------------------------------- /samples/PixelShaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/PixelShaders/README.md -------------------------------------------------------------------------------- /samples/PixelShaders/Retro.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/samples/PixelShaders/Retro.hlsl -------------------------------------------------------------------------------- /scratch/ScratchIslandApp/WindowExe/WindowExe.def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ConsolePerf.regions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/ConsolePerf.regions.xml -------------------------------------------------------------------------------- /src/ConsolePerf.wprp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/ConsolePerf.wprp -------------------------------------------------------------------------------- /src/StaticAnalysis.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/StaticAnalysis.ruleset -------------------------------------------------------------------------------- /src/Terminal.wprp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/Terminal.wprp -------------------------------------------------------------------------------- /src/audio/dirs: -------------------------------------------------------------------------------- 1 | DIRS=midi \ 2 | 3 | -------------------------------------------------------------------------------- /src/audio/midi/MidiAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/audio/midi/MidiAudio.cpp -------------------------------------------------------------------------------- /src/audio/midi/MidiAudio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/audio/midi/MidiAudio.hpp -------------------------------------------------------------------------------- /src/audio/midi/dirs: -------------------------------------------------------------------------------- 1 | DIRS=lib \ 2 | 3 | -------------------------------------------------------------------------------- /src/audio/midi/lib/midi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/audio/midi/lib/midi.vcxproj -------------------------------------------------------------------------------- /src/audio/midi/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/audio/midi/lib/sources -------------------------------------------------------------------------------- /src/audio/midi/lib/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/audio/midi/lib/sources.dep -------------------------------------------------------------------------------- /src/audio/midi/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/audio/midi/precomp.cpp -------------------------------------------------------------------------------- /src/audio/midi/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/audio/midi/precomp.h -------------------------------------------------------------------------------- /src/audio/midi/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/audio/midi/sources.inc -------------------------------------------------------------------------------- /src/buffer/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/dirs -------------------------------------------------------------------------------- /src/buffer/out/DbcsAttribute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/DbcsAttribute.hpp -------------------------------------------------------------------------------- /src/buffer/out/LineRendition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/LineRendition.hpp -------------------------------------------------------------------------------- /src/buffer/out/OutputCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/OutputCell.cpp -------------------------------------------------------------------------------- /src/buffer/out/OutputCell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/OutputCell.hpp -------------------------------------------------------------------------------- /src/buffer/out/OutputCellRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/OutputCellRect.cpp -------------------------------------------------------------------------------- /src/buffer/out/Row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/Row.cpp -------------------------------------------------------------------------------- /src/buffer/out/Row.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/Row.hpp -------------------------------------------------------------------------------- /src/buffer/out/TextAttribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/TextAttribute.cpp -------------------------------------------------------------------------------- /src/buffer/out/TextAttribute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/TextAttribute.hpp -------------------------------------------------------------------------------- /src/buffer/out/TextColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/TextColor.cpp -------------------------------------------------------------------------------- /src/buffer/out/TextColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/TextColor.h -------------------------------------------------------------------------------- /src/buffer/out/UTextAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/UTextAdapter.cpp -------------------------------------------------------------------------------- /src/buffer/out/UTextAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/UTextAdapter.h -------------------------------------------------------------------------------- /src/buffer/out/cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/cursor.cpp -------------------------------------------------------------------------------- /src/buffer/out/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/cursor.h -------------------------------------------------------------------------------- /src/buffer/out/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/dirs -------------------------------------------------------------------------------- /src/buffer/out/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/lib/sources -------------------------------------------------------------------------------- /src/buffer/out/lib/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/lib/sources.dep -------------------------------------------------------------------------------- /src/buffer/out/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/precomp.cpp -------------------------------------------------------------------------------- /src/buffer/out/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/precomp.h -------------------------------------------------------------------------------- /src/buffer/out/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/search.cpp -------------------------------------------------------------------------------- /src/buffer/out/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/search.h -------------------------------------------------------------------------------- /src/buffer/out/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/sources.inc -------------------------------------------------------------------------------- /src/buffer/out/textBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/textBuffer.cpp -------------------------------------------------------------------------------- /src/buffer/out/textBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/buffer/out/textBuffer.hpp -------------------------------------------------------------------------------- /src/cascadia/Remoting/Monarch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/Remoting/Monarch.h -------------------------------------------------------------------------------- /src/cascadia/Remoting/Peasant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/Remoting/Peasant.h -------------------------------------------------------------------------------- /src/cascadia/Remoting/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/Remoting/init.cpp -------------------------------------------------------------------------------- /src/cascadia/Remoting/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/Remoting/pch.cpp -------------------------------------------------------------------------------- /src/cascadia/Remoting/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/Remoting/pch.h -------------------------------------------------------------------------------- /src/cascadia/TerminalApp/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/TerminalApp/App.cpp -------------------------------------------------------------------------------- /src/cascadia/TerminalApp/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/TerminalApp/App.h -------------------------------------------------------------------------------- /src/cascadia/TerminalApp/App.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/TerminalApp/App.idl -------------------------------------------------------------------------------- /src/cascadia/TerminalApp/Pane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/TerminalApp/Pane.h -------------------------------------------------------------------------------- /src/cascadia/TerminalApp/Toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/TerminalApp/Toast.h -------------------------------------------------------------------------------- /src/cascadia/TerminalApp/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/TerminalApp/pch.cpp -------------------------------------------------------------------------------- /src/cascadia/TerminalApp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/TerminalApp/pch.h -------------------------------------------------------------------------------- /src/cascadia/TerminalCore/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/TerminalCore/pch.h -------------------------------------------------------------------------------- /src/cascadia/TerminalSettingsEditor/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/cascadia/UIHelpers/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/UIHelpers/init.cpp -------------------------------------------------------------------------------- /src/cascadia/UIHelpers/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/UIHelpers/pch.cpp -------------------------------------------------------------------------------- /src/cascadia/UIHelpers/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/UIHelpers/pch.h -------------------------------------------------------------------------------- /src/cascadia/UnitTests_SettingsModel/UnitTests_SettingsModel.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | -------------------------------------------------------------------------------- /src/cascadia/WinRTUtils/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/WinRTUtils/pch.cpp -------------------------------------------------------------------------------- /src/cascadia/WinRTUtils/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/WinRTUtils/pch.h -------------------------------------------------------------------------------- /src/cascadia/WindowsTerminal/WindowsTerminal.def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cascadia/ut_app/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/ut_app/precomp.cpp -------------------------------------------------------------------------------- /src/cascadia/ut_app/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/ut_app/precomp.h -------------------------------------------------------------------------------- /src/cascadia/wt/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/wt/resource.h -------------------------------------------------------------------------------- /src/cascadia/wt/shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/wt/shim.cpp -------------------------------------------------------------------------------- /src/cascadia/wt/wt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/wt/wt.rc -------------------------------------------------------------------------------- /src/cascadia/wt/wt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cascadia/wt/wt.vcxproj -------------------------------------------------------------------------------- /src/common.build.post.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/common.build.post.props -------------------------------------------------------------------------------- /src/common.build.pre.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/common.build.pre.props -------------------------------------------------------------------------------- /src/common.build.tests.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/common.build.tests.props -------------------------------------------------------------------------------- /src/common.nugetversions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/common.nugetversions.props -------------------------------------------------------------------------------- /src/common.nugetversions.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/common.nugetversions.targets -------------------------------------------------------------------------------- /src/cppwinrt.build.post.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cppwinrt.build.post.props -------------------------------------------------------------------------------- /src/cppwinrt.build.pre.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/cppwinrt.build.pre.props -------------------------------------------------------------------------------- /src/dep/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/dep/dirs -------------------------------------------------------------------------------- /src/dep/fmt/fmt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/dep/fmt/fmt.vcxproj -------------------------------------------------------------------------------- /src/dep/fmt/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/dep/fmt/sources -------------------------------------------------------------------------------- /src/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/dirs -------------------------------------------------------------------------------- /src/features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/features.xml -------------------------------------------------------------------------------- /src/host/ApiRoutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ApiRoutines.h -------------------------------------------------------------------------------- /src/host/ConsoleArguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ConsoleArguments.cpp -------------------------------------------------------------------------------- /src/host/ConsoleArguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ConsoleArguments.hpp -------------------------------------------------------------------------------- /src/host/CursorBlinker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/CursorBlinker.cpp -------------------------------------------------------------------------------- /src/host/CursorBlinker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/CursorBlinker.hpp -------------------------------------------------------------------------------- /src/host/IIoProvider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/IIoProvider.hpp -------------------------------------------------------------------------------- /src/host/VtApiRoutines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/VtApiRoutines.cpp -------------------------------------------------------------------------------- /src/host/VtApiRoutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/VtApiRoutines.h -------------------------------------------------------------------------------- /src/host/VtInputThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/VtInputThread.cpp -------------------------------------------------------------------------------- /src/host/VtInputThread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/VtInputThread.hpp -------------------------------------------------------------------------------- /src/host/VtIo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/VtIo.cpp -------------------------------------------------------------------------------- /src/host/VtIo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/VtIo.hpp -------------------------------------------------------------------------------- /src/host/_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/_output.cpp -------------------------------------------------------------------------------- /src/host/_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/_output.h -------------------------------------------------------------------------------- /src/host/_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/_stream.cpp -------------------------------------------------------------------------------- /src/host/_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/_stream.h -------------------------------------------------------------------------------- /src/host/alias.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/alias.cpp -------------------------------------------------------------------------------- /src/host/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/alias.h -------------------------------------------------------------------------------- /src/host/cmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/cmdline.cpp -------------------------------------------------------------------------------- /src/host/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/cmdline.h -------------------------------------------------------------------------------- /src/host/conapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/conapi.h -------------------------------------------------------------------------------- /src/host/conareainfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/conareainfo.cpp -------------------------------------------------------------------------------- /src/host/conareainfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/conareainfo.h -------------------------------------------------------------------------------- /src/host/conddkrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/conddkrefs.h -------------------------------------------------------------------------------- /src/host/conhost.rcv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/conhost.rcv -------------------------------------------------------------------------------- /src/host/conimeinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/conimeinfo.cpp -------------------------------------------------------------------------------- /src/host/conimeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/conimeinfo.h -------------------------------------------------------------------------------- /src/host/conserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/conserv.h -------------------------------------------------------------------------------- /src/host/consoleInformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/consoleInformation.cpp -------------------------------------------------------------------------------- /src/host/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/conv.h -------------------------------------------------------------------------------- /src/host/convarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/convarea.cpp -------------------------------------------------------------------------------- /src/host/conwinuserrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/conwinuserrefs.h -------------------------------------------------------------------------------- /src/host/dbcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/dbcs.cpp -------------------------------------------------------------------------------- /src/host/dbcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/dbcs.h -------------------------------------------------------------------------------- /src/host/directio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/directio.cpp -------------------------------------------------------------------------------- /src/host/directio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/directio.h -------------------------------------------------------------------------------- /src/host/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/dirs -------------------------------------------------------------------------------- /src/host/exe/CConsoleHandoff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/CConsoleHandoff.cpp -------------------------------------------------------------------------------- /src/host/exe/CConsoleHandoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/CConsoleHandoff.h -------------------------------------------------------------------------------- /src/host/exe/Conhost.exe.mui.lci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/Conhost.exe.mui.lci -------------------------------------------------------------------------------- /src/host/exe/Host.EXE.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/Host.EXE.rc -------------------------------------------------------------------------------- /src/host/exe/Host.EXE.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/Host.EXE.vcxproj -------------------------------------------------------------------------------- /src/host/exe/conhost.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/conhost.man -------------------------------------------------------------------------------- /src/host/exe/conhost.rcv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/conhost.rcv -------------------------------------------------------------------------------- /src/host/exe/console.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/console.ico -------------------------------------------------------------------------------- /src/host/exe/exemain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/exemain.cpp -------------------------------------------------------------------------------- /src/host/exe/makefile.inc: -------------------------------------------------------------------------------- 1 | $(OBJ_PATH)\$O\$(TARGETNAME).res: $(O_MANIFESTS) 2 | 3 | -------------------------------------------------------------------------------- /src/host/exe/product.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/product.pbxproj -------------------------------------------------------------------------------- /src/host/exe/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/resource.h -------------------------------------------------------------------------------- /src/host/exe/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/sources -------------------------------------------------------------------------------- /src/host/exe/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/exe/sources.dep -------------------------------------------------------------------------------- /src/host/ft_fuzzer/fuzzmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_fuzzer/fuzzmain.cpp -------------------------------------------------------------------------------- /src/host/ft_host/CanaryTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_host/CanaryTests.cpp -------------------------------------------------------------------------------- /src/host/ft_host/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_host/Common.cpp -------------------------------------------------------------------------------- /src/host/ft_host/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_host/Common.hpp -------------------------------------------------------------------------------- /src/host/ft_host/Host.Tests.Feature.rc: -------------------------------------------------------------------------------- 1 | 2 | #include "resource.h" 3 | 4 | CHAFA_CONTENT RCDATA "chafa.txt" 5 | -------------------------------------------------------------------------------- /src/host/ft_host/InitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_host/InitTests.cpp -------------------------------------------------------------------------------- /src/host/ft_host/chafa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_host/chafa.txt -------------------------------------------------------------------------------- /src/host/ft_host/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_host/precomp.cpp -------------------------------------------------------------------------------- /src/host/ft_host/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_host/precomp.h -------------------------------------------------------------------------------- /src/host/ft_host/product.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_host/product.pbxproj -------------------------------------------------------------------------------- /src/host/ft_host/resource.h: -------------------------------------------------------------------------------- 1 | #define CHAFA_CONTENT 300 2 | -------------------------------------------------------------------------------- /src/host/ft_host/runtest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_host/runtest.bat -------------------------------------------------------------------------------- /src/host/ft_host/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_host/sources -------------------------------------------------------------------------------- /src/host/ft_host/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_host/sources.dep -------------------------------------------------------------------------------- /src/host/ft_integrity/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_integrity/sources -------------------------------------------------------------------------------- /src/host/ft_uia/CloseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_uia/CloseTests.cs -------------------------------------------------------------------------------- /src/host/ft_uia/Elements/Tabs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_uia/Elements/Tabs.cs -------------------------------------------------------------------------------- /src/host/ft_uia/Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_uia/Init.cs -------------------------------------------------------------------------------- /src/host/ft_uia/KeyPressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_uia/KeyPressTests.cs -------------------------------------------------------------------------------- /src/host/ft_uia/MiscTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_uia/MiscTests.cs -------------------------------------------------------------------------------- /src/host/ft_uia/WinEventTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_uia/WinEventTests.cs -------------------------------------------------------------------------------- /src/host/ft_uia/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_uia/app.config -------------------------------------------------------------------------------- /src/host/ft_uia/product.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_uia/product.pbxproj -------------------------------------------------------------------------------- /src/host/ft_uia/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_uia/run.bat -------------------------------------------------------------------------------- /src/host/ft_uia/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_uia/sources -------------------------------------------------------------------------------- /src/host/ft_uia/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ft_uia/sources.dep -------------------------------------------------------------------------------- /src/host/getset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/getset.cpp -------------------------------------------------------------------------------- /src/host/getset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/getset.h -------------------------------------------------------------------------------- /src/host/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/globals.cpp -------------------------------------------------------------------------------- /src/host/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/globals.h -------------------------------------------------------------------------------- /src/host/handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/handle.cpp -------------------------------------------------------------------------------- /src/host/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/handle.h -------------------------------------------------------------------------------- /src/host/history.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/history.cpp -------------------------------------------------------------------------------- /src/host/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/history.h -------------------------------------------------------------------------------- /src/host/host-common.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/host-common.vcxitems -------------------------------------------------------------------------------- /src/host/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/init.cpp -------------------------------------------------------------------------------- /src/host/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/init.hpp -------------------------------------------------------------------------------- /src/host/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/input.cpp -------------------------------------------------------------------------------- /src/host/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/input.h -------------------------------------------------------------------------------- /src/host/inputBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/inputBuffer.cpp -------------------------------------------------------------------------------- /src/host/inputBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/inputBuffer.hpp -------------------------------------------------------------------------------- /src/host/inputKeyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/inputKeyInfo.cpp -------------------------------------------------------------------------------- /src/host/inputReadHandleData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/inputReadHandleData.cpp -------------------------------------------------------------------------------- /src/host/inputReadHandleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/inputReadHandleData.h -------------------------------------------------------------------------------- /src/host/lib/hostlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/lib/hostlib.vcxproj -------------------------------------------------------------------------------- /src/host/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/lib/sources -------------------------------------------------------------------------------- /src/host/lib/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/lib/sources.dep -------------------------------------------------------------------------------- /src/host/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/misc.cpp -------------------------------------------------------------------------------- /src/host/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/misc.h -------------------------------------------------------------------------------- /src/host/ntprivapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ntprivapi.cpp -------------------------------------------------------------------------------- /src/host/ntprivapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ntprivapi.hpp -------------------------------------------------------------------------------- /src/host/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/output.cpp -------------------------------------------------------------------------------- /src/host/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/output.h -------------------------------------------------------------------------------- /src/host/outputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/outputStream.cpp -------------------------------------------------------------------------------- /src/host/outputStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/outputStream.hpp -------------------------------------------------------------------------------- /src/host/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/precomp.cpp -------------------------------------------------------------------------------- /src/host/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/precomp.h -------------------------------------------------------------------------------- /src/host/proxy/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/proxy/sources -------------------------------------------------------------------------------- /src/host/proxy/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/proxy/sources.dep -------------------------------------------------------------------------------- /src/host/readData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/readData.cpp -------------------------------------------------------------------------------- /src/host/readData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/readData.hpp -------------------------------------------------------------------------------- /src/host/readDataCooked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/readDataCooked.cpp -------------------------------------------------------------------------------- /src/host/readDataCooked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/readDataCooked.hpp -------------------------------------------------------------------------------- /src/host/readDataDirect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/readDataDirect.cpp -------------------------------------------------------------------------------- /src/host/readDataDirect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/readDataDirect.hpp -------------------------------------------------------------------------------- /src/host/readDataRaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/readDataRaw.cpp -------------------------------------------------------------------------------- /src/host/readDataRaw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/readDataRaw.hpp -------------------------------------------------------------------------------- /src/host/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/registry.cpp -------------------------------------------------------------------------------- /src/host/registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/registry.hpp -------------------------------------------------------------------------------- /src/host/renderData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/renderData.cpp -------------------------------------------------------------------------------- /src/host/renderData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/renderData.hpp -------------------------------------------------------------------------------- /src/host/renderFontDefaults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/renderFontDefaults.cpp -------------------------------------------------------------------------------- /src/host/renderFontDefaults.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/renderFontDefaults.hpp -------------------------------------------------------------------------------- /src/host/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/res.rc -------------------------------------------------------------------------------- /src/host/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/resource.h -------------------------------------------------------------------------------- /src/host/runft.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/runft.bat -------------------------------------------------------------------------------- /src/host/runtests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/runtests.bat -------------------------------------------------------------------------------- /src/host/runut.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/runut.bat -------------------------------------------------------------------------------- /src/host/screenInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/screenInfo.cpp -------------------------------------------------------------------------------- /src/host/screenInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/screenInfo.hpp -------------------------------------------------------------------------------- /src/host/scrolling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/scrolling.cpp -------------------------------------------------------------------------------- /src/host/scrolling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/scrolling.hpp -------------------------------------------------------------------------------- /src/host/selection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/selection.cpp -------------------------------------------------------------------------------- /src/host/selection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/selection.hpp -------------------------------------------------------------------------------- /src/host/selectionInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/selectionInput.cpp -------------------------------------------------------------------------------- /src/host/selectionState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/selectionState.cpp -------------------------------------------------------------------------------- /src/host/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/server.h -------------------------------------------------------------------------------- /src/host/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/settings.cpp -------------------------------------------------------------------------------- /src/host/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/settings.hpp -------------------------------------------------------------------------------- /src/host/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/sources.inc -------------------------------------------------------------------------------- /src/host/sources.test.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/sources.test.inc -------------------------------------------------------------------------------- /src/host/srvinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/srvinit.cpp -------------------------------------------------------------------------------- /src/host/srvinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/srvinit.h -------------------------------------------------------------------------------- /src/host/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/stream.cpp -------------------------------------------------------------------------------- /src/host/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/stream.h -------------------------------------------------------------------------------- /src/host/tracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/tracing.cpp -------------------------------------------------------------------------------- /src/host/tracing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/tracing.hpp -------------------------------------------------------------------------------- /src/host/ut_host/AliasTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_host/AliasTests.cpp -------------------------------------------------------------------------------- /src/host/ut_host/DbcsTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_host/DbcsTests.cpp -------------------------------------------------------------------------------- /src/host/ut_host/InitTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_host/InitTests.cpp -------------------------------------------------------------------------------- /src/host/ut_host/ObjectTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_host/ObjectTests.cpp -------------------------------------------------------------------------------- /src/host/ut_host/SearchTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_host/SearchTests.cpp -------------------------------------------------------------------------------- /src/host/ut_host/TitleTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_host/TitleTests.cpp -------------------------------------------------------------------------------- /src/host/ut_host/UtilsTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_host/UtilsTests.cpp -------------------------------------------------------------------------------- /src/host/ut_host/VtIoTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_host/VtIoTests.cpp -------------------------------------------------------------------------------- /src/host/ut_host/product.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_host/product.pbxproj -------------------------------------------------------------------------------- /src/host/ut_host/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_host/sources -------------------------------------------------------------------------------- /src/host/ut_host/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_host/sources.dep -------------------------------------------------------------------------------- /src/host/ut_lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_lib/sources -------------------------------------------------------------------------------- /src/host/ut_lib/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/ut_lib/sources.dep -------------------------------------------------------------------------------- /src/host/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/utils.cpp -------------------------------------------------------------------------------- /src/host/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/utils.hpp -------------------------------------------------------------------------------- /src/host/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/writeData.cpp -------------------------------------------------------------------------------- /src/host/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/host/writeData.hpp -------------------------------------------------------------------------------- /src/inc/CppCoreCheck/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/CppCoreCheck/warnings.h -------------------------------------------------------------------------------- /src/inc/DefaultSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/DefaultSettings.h -------------------------------------------------------------------------------- /src/inc/HostSignals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/HostSignals.hpp -------------------------------------------------------------------------------- /src/inc/LibraryIncludes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/LibraryIncludes.h -------------------------------------------------------------------------------- /src/inc/TestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/TestUtils.h -------------------------------------------------------------------------------- /src/inc/VtIoModes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/VtIoModes.hpp -------------------------------------------------------------------------------- /src/inc/WilErrorReporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/WilErrorReporting.h -------------------------------------------------------------------------------- /src/inc/conattrs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/conattrs.hpp -------------------------------------------------------------------------------- /src/inc/conime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/conime.h -------------------------------------------------------------------------------- /src/inc/conint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/conint.h -------------------------------------------------------------------------------- /src/inc/conpty-static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/conpty-static.h -------------------------------------------------------------------------------- /src/inc/conpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/conpty.h -------------------------------------------------------------------------------- /src/inc/consoletaeftemplates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/consoletaeftemplates.hpp -------------------------------------------------------------------------------- /src/inc/contsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/contsf.h -------------------------------------------------------------------------------- /src/inc/cpl_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/cpl_core.h -------------------------------------------------------------------------------- /src/inc/test/CommonState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/test/CommonState.hpp -------------------------------------------------------------------------------- /src/inc/til.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til.h -------------------------------------------------------------------------------- /src/inc/til/at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/at.h -------------------------------------------------------------------------------- /src/inc/til/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/atomic.h -------------------------------------------------------------------------------- /src/inc/til/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/bit.h -------------------------------------------------------------------------------- /src/inc/til/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/bitmap.h -------------------------------------------------------------------------------- /src/inc/til/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/bytes.h -------------------------------------------------------------------------------- /src/inc/til/coalesce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/coalesce.h -------------------------------------------------------------------------------- /src/inc/til/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/color.h -------------------------------------------------------------------------------- /src/inc/til/enumset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/enumset.h -------------------------------------------------------------------------------- /src/inc/til/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/env.h -------------------------------------------------------------------------------- /src/inc/til/flat_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/flat_set.h -------------------------------------------------------------------------------- /src/inc/til/generational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/generational.h -------------------------------------------------------------------------------- /src/inc/til/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/hash.h -------------------------------------------------------------------------------- /src/inc/til/latch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/latch.h -------------------------------------------------------------------------------- /src/inc/til/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/math.h -------------------------------------------------------------------------------- /src/inc/til/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/mutex.h -------------------------------------------------------------------------------- /src/inc/til/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/operators.h -------------------------------------------------------------------------------- /src/inc/til/pmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/pmr.h -------------------------------------------------------------------------------- /src/inc/til/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/point.h -------------------------------------------------------------------------------- /src/inc/til/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/rand.h -------------------------------------------------------------------------------- /src/inc/til/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/rect.h -------------------------------------------------------------------------------- /src/inc/til/replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/replace.h -------------------------------------------------------------------------------- /src/inc/til/rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/rle.h -------------------------------------------------------------------------------- /src/inc/til/size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/size.h -------------------------------------------------------------------------------- /src/inc/til/small_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/small_vector.h -------------------------------------------------------------------------------- /src/inc/til/some.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/some.h -------------------------------------------------------------------------------- /src/inc/til/spsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/spsc.h -------------------------------------------------------------------------------- /src/inc/til/static_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/static_map.h -------------------------------------------------------------------------------- /src/inc/til/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/string.h -------------------------------------------------------------------------------- /src/inc/til/throttled_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/throttled_func.h -------------------------------------------------------------------------------- /src/inc/til/ticket_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/ticket_lock.h -------------------------------------------------------------------------------- /src/inc/til/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/type_traits.h -------------------------------------------------------------------------------- /src/inc/til/u8u16convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/u8u16convert.h -------------------------------------------------------------------------------- /src/inc/til/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/unicode.h -------------------------------------------------------------------------------- /src/inc/til/winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/til/winrt.h -------------------------------------------------------------------------------- /src/inc/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/unicode.hpp -------------------------------------------------------------------------------- /src/inc/winrtTaefTemplates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/inc/winrtTaefTemplates.hpp -------------------------------------------------------------------------------- /src/interactivity/base/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/base/dirs -------------------------------------------------------------------------------- /src/interactivity/base/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/base/precomp.h -------------------------------------------------------------------------------- /src/interactivity/base/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/base/res.rc -------------------------------------------------------------------------------- /src/interactivity/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/dirs -------------------------------------------------------------------------------- /src/interactivity/inc/Module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/inc/Module.hpp -------------------------------------------------------------------------------- /src/interactivity/onecore/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/onecore/dirs -------------------------------------------------------------------------------- /src/interactivity/onecore/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/onecore/res.rc -------------------------------------------------------------------------------- /src/interactivity/win32/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/win32/dirs -------------------------------------------------------------------------------- /src/interactivity/win32/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/win32/find.cpp -------------------------------------------------------------------------------- /src/interactivity/win32/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/win32/find.h -------------------------------------------------------------------------------- /src/interactivity/win32/icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/win32/icon.cpp -------------------------------------------------------------------------------- /src/interactivity/win32/icon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/win32/icon.hpp -------------------------------------------------------------------------------- /src/interactivity/win32/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/win32/menu.cpp -------------------------------------------------------------------------------- /src/interactivity/win32/menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/win32/menu.hpp -------------------------------------------------------------------------------- /src/interactivity/win32/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/interactivity/win32/res.rc -------------------------------------------------------------------------------- /src/internal/internal.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/internal/internal.vcxproj -------------------------------------------------------------------------------- /src/internal/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/internal/precomp.cpp -------------------------------------------------------------------------------- /src/internal/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/internal/precomp.h -------------------------------------------------------------------------------- /src/internal/stubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/internal/stubs.cpp -------------------------------------------------------------------------------- /src/project.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/project.inc -------------------------------------------------------------------------------- /src/project.unittest.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/project.unittest.inc -------------------------------------------------------------------------------- /src/propsheet/ColorControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/ColorControl.cpp -------------------------------------------------------------------------------- /src/propsheet/ColorControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/ColorControl.h -------------------------------------------------------------------------------- /src/propsheet/ColorsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/ColorsPage.cpp -------------------------------------------------------------------------------- /src/propsheet/ColorsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/ColorsPage.h -------------------------------------------------------------------------------- /src/propsheet/LayoutPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/LayoutPage.cpp -------------------------------------------------------------------------------- /src/propsheet/LayoutPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/LayoutPage.h -------------------------------------------------------------------------------- /src/propsheet/OptionsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/OptionsPage.cpp -------------------------------------------------------------------------------- /src/propsheet/OptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/OptionsPage.h -------------------------------------------------------------------------------- /src/propsheet/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/console.cpp -------------------------------------------------------------------------------- /src/propsheet/console.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/console.def -------------------------------------------------------------------------------- /src/propsheet/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/console.h -------------------------------------------------------------------------------- /src/propsheet/console.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/console.man -------------------------------------------------------------------------------- /src/propsheet/console.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/console.rc -------------------------------------------------------------------------------- /src/propsheet/dbcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/dbcs.cpp -------------------------------------------------------------------------------- /src/propsheet/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/dialogs.h -------------------------------------------------------------------------------- /src/propsheet/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/dll.cpp -------------------------------------------------------------------------------- /src/propsheet/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/font.h -------------------------------------------------------------------------------- /src/propsheet/fontdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/fontdlg.cpp -------------------------------------------------------------------------------- /src/propsheet/fontdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/fontdlg.h -------------------------------------------------------------------------------- /src/propsheet/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/globals.cpp -------------------------------------------------------------------------------- /src/propsheet/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/globals.h -------------------------------------------------------------------------------- /src/propsheet/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/init.cpp -------------------------------------------------------------------------------- /src/propsheet/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/menu.h -------------------------------------------------------------------------------- /src/propsheet/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/misc.cpp -------------------------------------------------------------------------------- /src/propsheet/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/precomp.cpp -------------------------------------------------------------------------------- /src/propsheet/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/precomp.h -------------------------------------------------------------------------------- /src/propsheet/preview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/preview.cpp -------------------------------------------------------------------------------- /src/propsheet/product.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/product.pbxproj -------------------------------------------------------------------------------- /src/propsheet/propsheet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/propsheet.vcxproj -------------------------------------------------------------------------------- /src/propsheet/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/registry.cpp -------------------------------------------------------------------------------- /src/propsheet/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/sources -------------------------------------------------------------------------------- /src/propsheet/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/sources.dep -------------------------------------------------------------------------------- /src/propsheet/strid.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/strid.mc -------------------------------------------------------------------------------- /src/propsheet/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propsheet/util.cpp -------------------------------------------------------------------------------- /src/propslib/conpropsp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propslib/conpropsp.hpp -------------------------------------------------------------------------------- /src/propslib/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propslib/precomp.cpp -------------------------------------------------------------------------------- /src/propslib/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propslib/precomp.h -------------------------------------------------------------------------------- /src/propslib/propslib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propslib/propslib.vcxproj -------------------------------------------------------------------------------- /src/propslib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propslib/sources -------------------------------------------------------------------------------- /src/propslib/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/propslib/sources.dep -------------------------------------------------------------------------------- /src/renderer/atlas/AtlasEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/AtlasEngine.h -------------------------------------------------------------------------------- /src/renderer/atlas/Backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/Backend.cpp -------------------------------------------------------------------------------- /src/renderer/atlas/Backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/Backend.h -------------------------------------------------------------------------------- /src/renderer/atlas/BackendD2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/BackendD2D.h -------------------------------------------------------------------------------- /src/renderer/atlas/BackendD3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/BackendD3D.h -------------------------------------------------------------------------------- /src/renderer/atlas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/README.md -------------------------------------------------------------------------------- /src/renderer/atlas/atlas.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/atlas.vcxproj -------------------------------------------------------------------------------- /src/renderer/atlas/colorbrewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/colorbrewer.h -------------------------------------------------------------------------------- /src/renderer/atlas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/common.h -------------------------------------------------------------------------------- /src/renderer/atlas/dwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/dwrite.cpp -------------------------------------------------------------------------------- /src/renderer/atlas/dwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/dwrite.h -------------------------------------------------------------------------------- /src/renderer/atlas/dwrite.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/dwrite.hlsl -------------------------------------------------------------------------------- /src/renderer/atlas/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/pch.cpp -------------------------------------------------------------------------------- /src/renderer/atlas/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/pch.h -------------------------------------------------------------------------------- /src/renderer/atlas/wic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/wic.cpp -------------------------------------------------------------------------------- /src/renderer/atlas/wic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/atlas/wic.h -------------------------------------------------------------------------------- /src/renderer/base/FontCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/base/FontCache.h -------------------------------------------------------------------------------- /src/renderer/base/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/base/dirs -------------------------------------------------------------------------------- /src/renderer/base/fontinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/base/fontinfo.cpp -------------------------------------------------------------------------------- /src/renderer/base/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/base/lib/sources -------------------------------------------------------------------------------- /src/renderer/base/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/base/precomp.cpp -------------------------------------------------------------------------------- /src/renderer/base/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/base/precomp.h -------------------------------------------------------------------------------- /src/renderer/base/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/base/renderer.cpp -------------------------------------------------------------------------------- /src/renderer/base/renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/base/renderer.hpp -------------------------------------------------------------------------------- /src/renderer/base/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/base/sources.inc -------------------------------------------------------------------------------- /src/renderer/base/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/base/thread.cpp -------------------------------------------------------------------------------- /src/renderer/base/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/base/thread.hpp -------------------------------------------------------------------------------- /src/renderer/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/dirs -------------------------------------------------------------------------------- /src/renderer/gdi/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/dirs -------------------------------------------------------------------------------- /src/renderer/gdi/gdirenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/gdirenderer.hpp -------------------------------------------------------------------------------- /src/renderer/gdi/invalidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/invalidate.cpp -------------------------------------------------------------------------------- /src/renderer/gdi/lib/gdi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/lib/gdi.vcxproj -------------------------------------------------------------------------------- /src/renderer/gdi/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/lib/sources -------------------------------------------------------------------------------- /src/renderer/gdi/lib/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/lib/sources.dep -------------------------------------------------------------------------------- /src/renderer/gdi/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/math.cpp -------------------------------------------------------------------------------- /src/renderer/gdi/paint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/paint.cpp -------------------------------------------------------------------------------- /src/renderer/gdi/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/precomp.cpp -------------------------------------------------------------------------------- /src/renderer/gdi/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/precomp.h -------------------------------------------------------------------------------- /src/renderer/gdi/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/sources.inc -------------------------------------------------------------------------------- /src/renderer/gdi/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/state.cpp -------------------------------------------------------------------------------- /src/renderer/gdi/tool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/gdi/tool/main.cpp -------------------------------------------------------------------------------- /src/renderer/inc/Cluster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/inc/Cluster.hpp -------------------------------------------------------------------------------- /src/renderer/inc/CursorOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/inc/CursorOptions.h -------------------------------------------------------------------------------- /src/renderer/inc/FontInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/inc/FontInfo.hpp -------------------------------------------------------------------------------- /src/renderer/inc/IRenderData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/inc/IRenderData.hpp -------------------------------------------------------------------------------- /src/renderer/uia/UiaRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/uia/UiaRenderer.cpp -------------------------------------------------------------------------------- /src/renderer/uia/UiaRenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/uia/UiaRenderer.hpp -------------------------------------------------------------------------------- /src/renderer/uia/lib/uia.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/uia/lib/uia.vcxproj -------------------------------------------------------------------------------- /src/renderer/uia/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/uia/precomp.cpp -------------------------------------------------------------------------------- /src/renderer/uia/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/uia/precomp.h -------------------------------------------------------------------------------- /src/renderer/vt/VtSequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/VtSequences.cpp -------------------------------------------------------------------------------- /src/renderer/vt/XtermEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/XtermEngine.cpp -------------------------------------------------------------------------------- /src/renderer/vt/XtermEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/XtermEngine.hpp -------------------------------------------------------------------------------- /src/renderer/vt/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/dirs -------------------------------------------------------------------------------- /src/renderer/vt/invalidate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/invalidate.cpp -------------------------------------------------------------------------------- /src/renderer/vt/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/lib/sources -------------------------------------------------------------------------------- /src/renderer/vt/lib/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/lib/sources.dep -------------------------------------------------------------------------------- /src/renderer/vt/lib/vt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/lib/vt.vcxproj -------------------------------------------------------------------------------- /src/renderer/vt/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/math.cpp -------------------------------------------------------------------------------- /src/renderer/vt/paint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/paint.cpp -------------------------------------------------------------------------------- /src/renderer/vt/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/precomp.cpp -------------------------------------------------------------------------------- /src/renderer/vt/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/precomp.h -------------------------------------------------------------------------------- /src/renderer/vt/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/sources.inc -------------------------------------------------------------------------------- /src/renderer/vt/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/state.cpp -------------------------------------------------------------------------------- /src/renderer/vt/tracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/tracing.cpp -------------------------------------------------------------------------------- /src/renderer/vt/tracing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/tracing.hpp -------------------------------------------------------------------------------- /src/renderer/vt/ut_lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/ut_lib/sources -------------------------------------------------------------------------------- /src/renderer/vt/vtrenderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/vt/vtrenderer.hpp -------------------------------------------------------------------------------- /src/renderer/wddmcon/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/wddmcon/dirs -------------------------------------------------------------------------------- /src/renderer/wddmcon/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/wddmcon/lib/sources -------------------------------------------------------------------------------- /src/renderer/wddmcon/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/wddmcon/main.cxx -------------------------------------------------------------------------------- /src/renderer/wddmcon/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/wddmcon/main.h -------------------------------------------------------------------------------- /src/renderer/wddmcon/oss_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/wddmcon/oss_shim.h -------------------------------------------------------------------------------- /src/renderer/wddmcon/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/wddmcon/precomp.cpp -------------------------------------------------------------------------------- /src/renderer/wddmcon/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/wddmcon/precomp.h -------------------------------------------------------------------------------- /src/renderer/wddmcon/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/renderer/wddmcon/sources.inc -------------------------------------------------------------------------------- /src/server/ApiDispatchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ApiDispatchers.cpp -------------------------------------------------------------------------------- /src/server/ApiDispatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ApiDispatchers.h -------------------------------------------------------------------------------- /src/server/ApiMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ApiMessage.cpp -------------------------------------------------------------------------------- /src/server/ApiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ApiMessage.h -------------------------------------------------------------------------------- /src/server/ApiMessageState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ApiMessageState.cpp -------------------------------------------------------------------------------- /src/server/ApiMessageState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ApiMessageState.h -------------------------------------------------------------------------------- /src/server/ApiSorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ApiSorter.cpp -------------------------------------------------------------------------------- /src/server/ApiSorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ApiSorter.h -------------------------------------------------------------------------------- /src/server/ConDrvDeviceComm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ConDrvDeviceComm.cpp -------------------------------------------------------------------------------- /src/server/ConDrvDeviceComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ConDrvDeviceComm.h -------------------------------------------------------------------------------- /src/server/ConsoleShimPolicy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ConsoleShimPolicy.cpp -------------------------------------------------------------------------------- /src/server/ConsoleShimPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ConsoleShimPolicy.h -------------------------------------------------------------------------------- /src/server/DeviceComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/DeviceComm.h -------------------------------------------------------------------------------- /src/server/DeviceHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/DeviceHandle.cpp -------------------------------------------------------------------------------- /src/server/DeviceHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/DeviceHandle.h -------------------------------------------------------------------------------- /src/server/Entrypoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/Entrypoints.cpp -------------------------------------------------------------------------------- /src/server/Entrypoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/Entrypoints.h -------------------------------------------------------------------------------- /src/server/IApiRoutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/IApiRoutines.h -------------------------------------------------------------------------------- /src/server/IWaitRoutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/IWaitRoutine.h -------------------------------------------------------------------------------- /src/server/IoDispatchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/IoDispatchers.cpp -------------------------------------------------------------------------------- /src/server/IoDispatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/IoDispatchers.h -------------------------------------------------------------------------------- /src/server/IoSorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/IoSorter.cpp -------------------------------------------------------------------------------- /src/server/IoSorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/IoSorter.h -------------------------------------------------------------------------------- /src/server/IoThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/IoThread.h -------------------------------------------------------------------------------- /src/server/ObjectHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ObjectHandle.cpp -------------------------------------------------------------------------------- /src/server/ObjectHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ObjectHandle.h -------------------------------------------------------------------------------- /src/server/ObjectHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ObjectHeader.cpp -------------------------------------------------------------------------------- /src/server/ObjectHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ObjectHeader.h -------------------------------------------------------------------------------- /src/server/ProcessHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ProcessHandle.cpp -------------------------------------------------------------------------------- /src/server/ProcessHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ProcessHandle.h -------------------------------------------------------------------------------- /src/server/ProcessList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ProcessList.cpp -------------------------------------------------------------------------------- /src/server/ProcessList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ProcessList.h -------------------------------------------------------------------------------- /src/server/ProcessPolicy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ProcessPolicy.cpp -------------------------------------------------------------------------------- /src/server/ProcessPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/ProcessPolicy.h -------------------------------------------------------------------------------- /src/server/WaitBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/WaitBlock.cpp -------------------------------------------------------------------------------- /src/server/WaitBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/WaitBlock.h -------------------------------------------------------------------------------- /src/server/WaitQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/WaitQueue.cpp -------------------------------------------------------------------------------- /src/server/WaitQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/WaitQueue.h -------------------------------------------------------------------------------- /src/server/WinNTControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/WinNTControl.cpp -------------------------------------------------------------------------------- /src/server/WinNTControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/WinNTControl.h -------------------------------------------------------------------------------- /src/server/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/dirs -------------------------------------------------------------------------------- /src/server/lib/server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/lib/server.vcxproj -------------------------------------------------------------------------------- /src/server/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/lib/sources -------------------------------------------------------------------------------- /src/server/lib/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/lib/sources.dep -------------------------------------------------------------------------------- /src/server/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/precomp.cpp -------------------------------------------------------------------------------- /src/server/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/precomp.h -------------------------------------------------------------------------------- /src/server/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/sources.inc -------------------------------------------------------------------------------- /src/server/winbasep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/server/winbasep.h -------------------------------------------------------------------------------- /src/staging/makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/staging/makefile.inc -------------------------------------------------------------------------------- /src/staging/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/staging/sources -------------------------------------------------------------------------------- /src/terminal/adapter/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/adapter/dirs -------------------------------------------------------------------------------- /src/terminal/adapter/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/adapter/lib/sources -------------------------------------------------------------------------------- /src/terminal/adapter/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/adapter/precomp.cpp -------------------------------------------------------------------------------- /src/terminal/adapter/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/adapter/precomp.h -------------------------------------------------------------------------------- /src/terminal/adapter/runtest.bat: -------------------------------------------------------------------------------- 1 | .\ut_adapter\run.bat %* -------------------------------------------------------------------------------- /src/terminal/adapter/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/adapter/sources.inc -------------------------------------------------------------------------------- /src/terminal/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/dirs -------------------------------------------------------------------------------- /src/terminal/input/dirs: -------------------------------------------------------------------------------- 1 | DIRS=lib \ 2 | -------------------------------------------------------------------------------- /src/terminal/input/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/input/lib/sources -------------------------------------------------------------------------------- /src/terminal/input/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/input/precomp.cpp -------------------------------------------------------------------------------- /src/terminal/input/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/input/precomp.h -------------------------------------------------------------------------------- /src/terminal/input/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/input/sources.inc -------------------------------------------------------------------------------- /src/terminal/parser/ascii.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/parser/ascii.hpp -------------------------------------------------------------------------------- /src/terminal/parser/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/parser/base64.cpp -------------------------------------------------------------------------------- /src/terminal/parser/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/parser/base64.hpp -------------------------------------------------------------------------------- /src/terminal/parser/delfuzzpayload.bat: -------------------------------------------------------------------------------- 1 | rmdir /S /Q %_NTTREE%\unittests\ft_fuzzer -------------------------------------------------------------------------------- /src/terminal/parser/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/parser/dirs -------------------------------------------------------------------------------- /src/terminal/parser/ft_fuzzer/run.bat: -------------------------------------------------------------------------------- 1 | %_NTTREE%\unittests\VTCommandFuzzer.exe %1 %2 %3 %4 %5 %6 %7 %8 %9 -------------------------------------------------------------------------------- /src/terminal/parser/ft_fuzzwrapper/run.bat: -------------------------------------------------------------------------------- 1 | %_NTTREE%\unittests\conterm.parser.fuzzwrapper.exe %1 %2 %3 %4 %5 %6 -------------------------------------------------------------------------------- /src/terminal/parser/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/parser/lib/sources -------------------------------------------------------------------------------- /src/terminal/parser/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/parser/precomp.cpp -------------------------------------------------------------------------------- /src/terminal/parser/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/parser/precomp.h -------------------------------------------------------------------------------- /src/terminal/parser/runfuzz.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/parser/runfuzz.bat -------------------------------------------------------------------------------- /src/terminal/parser/runtest.bat: -------------------------------------------------------------------------------- 1 | .\ut_parser\run.bat %1 %2 %3 %4 %5 %6 %7 %8 %9 -------------------------------------------------------------------------------- /src/terminal/parser/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/parser/sources.inc -------------------------------------------------------------------------------- /src/terminal/parser/tracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/parser/tracing.cpp -------------------------------------------------------------------------------- /src/terminal/parser/tracing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/terminal/parser/tracing.hpp -------------------------------------------------------------------------------- /src/testlist/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/testlist/sources -------------------------------------------------------------------------------- /src/til/dirs: -------------------------------------------------------------------------------- 1 | DIRS=ut_til \ 2 | 3 | -------------------------------------------------------------------------------- /src/til/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/precomp.cpp -------------------------------------------------------------------------------- /src/til/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/precomp.h -------------------------------------------------------------------------------- /src/til/ut_til/BaseTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/BaseTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/BitmapTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/BitmapTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/CoalesceTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/CoalesceTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/ColorTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/ColorTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/EnumSetTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/EnumSetTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/EnvTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/EnvTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/FlatSetTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/FlatSetTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/HashTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/HashTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/MathTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/MathTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/OperatorTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/OperatorTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/PointTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/PointTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/ReplaceTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/ReplaceTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/SPSCTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/SPSCTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/SizeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/SizeTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/SomeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/SomeTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/UnicodeTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/UnicodeTests.cpp -------------------------------------------------------------------------------- /src/til/ut_til/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/mutex.cpp -------------------------------------------------------------------------------- /src/til/ut_til/product.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/product.pbxproj -------------------------------------------------------------------------------- /src/til/ut_til/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/sources -------------------------------------------------------------------------------- /src/til/ut_til/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/sources.dep -------------------------------------------------------------------------------- /src/til/ut_til/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/til/ut_til/string.cpp -------------------------------------------------------------------------------- /src/tools/ColorTool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ColorTool/LICENSE -------------------------------------------------------------------------------- /src/tools/ColorTool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ColorTool/README.md -------------------------------------------------------------------------------- /src/tools/ColorTool/all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ColorTool/all.bat -------------------------------------------------------------------------------- /src/tools/ColorTool/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ColorTool/build.bat -------------------------------------------------------------------------------- /src/tools/ConsoleBench/arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ConsoleBench/arena.cpp -------------------------------------------------------------------------------- /src/tools/ConsoleBench/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ConsoleBench/arena.h -------------------------------------------------------------------------------- /src/tools/ConsoleBench/conhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ConsoleBench/conhost.h -------------------------------------------------------------------------------- /src/tools/ConsoleBench/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ConsoleBench/main.cpp -------------------------------------------------------------------------------- /src/tools/ConsoleBench/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ConsoleBench/pch.cpp -------------------------------------------------------------------------------- /src/tools/ConsoleBench/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ConsoleBench/pch.h -------------------------------------------------------------------------------- /src/tools/ConsoleBench/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ConsoleBench/utils.cpp -------------------------------------------------------------------------------- /src/tools/ConsoleBench/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ConsoleBench/utils.h -------------------------------------------------------------------------------- /src/tools/ConsoleMonitor/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/tools/ConsoleMonitor/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ConsoleMonitor/pch.h -------------------------------------------------------------------------------- /src/tools/MonarchPeasantSample/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/tools/U8U16Test/_test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/U8U16Test/_test.cmd -------------------------------------------------------------------------------- /src/tools/U8U16Test/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/U8U16Test/en.txt -------------------------------------------------------------------------------- /src/tools/U8U16Test/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/U8U16Test/fr.txt -------------------------------------------------------------------------------- /src/tools/U8U16Test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/U8U16Test/main.cpp -------------------------------------------------------------------------------- /src/tools/U8U16Test/ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/U8U16Test/ru.txt -------------------------------------------------------------------------------- /src/tools/U8U16Test/zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/U8U16Test/zh.txt -------------------------------------------------------------------------------- /src/tools/ansi-color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ansi-color/README.md -------------------------------------------------------------------------------- /src/tools/ansi-color/attrib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ansi-color/attrib.def -------------------------------------------------------------------------------- /src/tools/ansi-color/crisman.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ansi-color/crisman.def -------------------------------------------------------------------------------- /src/tools/ansi-color/fgbg.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ansi-color/fgbg.def -------------------------------------------------------------------------------- /src/tools/ansi-color/lbl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ansi-color/lbl.def -------------------------------------------------------------------------------- /src/tools/ansi-color/plaid.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ansi-color/plaid.def -------------------------------------------------------------------------------- /src/tools/ansi-color/rainbow.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ansi-color/rainbow.def -------------------------------------------------------------------------------- /src/tools/ansi-color/rosetta.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ansi-color/rosetta.def -------------------------------------------------------------------------------- /src/tools/ansi-color/sgr.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ansi-color/sgr.def -------------------------------------------------------------------------------- /src/tools/ansi-color/tsgr.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ansi-color/tsgr.def -------------------------------------------------------------------------------- /src/tools/ansi-color/ubuntu.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/ansi-color/ubuntu.def -------------------------------------------------------------------------------- /src/tools/benchcat/crt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/benchcat/crt.cpp -------------------------------------------------------------------------------- /src/tools/benchcat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/benchcat/main.cpp -------------------------------------------------------------------------------- /src/tools/buffersize/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/buffersize/main.cpp -------------------------------------------------------------------------------- /src/tools/closetest/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/closetest/res.rc -------------------------------------------------------------------------------- /src/tools/closetest/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/closetest/sources -------------------------------------------------------------------------------- /src/tools/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/dirs -------------------------------------------------------------------------------- /src/tools/echokey/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/echokey/main.cpp -------------------------------------------------------------------------------- /src/tools/echokey/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/echokey/res.rc -------------------------------------------------------------------------------- /src/tools/echokey/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/echokey/sources -------------------------------------------------------------------------------- /src/tools/fontlist/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/fontlist/main.cpp -------------------------------------------------------------------------------- /src/tools/integrity/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/integrity/dirs -------------------------------------------------------------------------------- /src/tools/integrity/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/integrity/lib/sources -------------------------------------------------------------------------------- /src/tools/integrity/lib/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/integrity/lib/util.cpp -------------------------------------------------------------------------------- /src/tools/integrity/lib/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/integrity/lib/util.h -------------------------------------------------------------------------------- /src/tools/lnkd/lnkd.bat: -------------------------------------------------------------------------------- 1 | %_NTTREE%\lnkd.exe %1 %2 %3 %4 %5 %6 %7 %8 %9 -------------------------------------------------------------------------------- /src/tools/lnkd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/lnkd/main.cpp -------------------------------------------------------------------------------- /src/tools/lnkd/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/lnkd/precomp.h -------------------------------------------------------------------------------- /src/tools/lnkd/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/lnkd/res.rc -------------------------------------------------------------------------------- /src/tools/lnkd/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/lnkd/sources -------------------------------------------------------------------------------- /src/tools/nihilist/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/nihilist/main.cpp -------------------------------------------------------------------------------- /src/tools/nihilist/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/nihilist/res.rc -------------------------------------------------------------------------------- /src/tools/nihilist/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/nihilist/sources -------------------------------------------------------------------------------- /src/tools/pixels/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/pixels/main.cpp -------------------------------------------------------------------------------- /src/tools/pixels/pixels.bat: -------------------------------------------------------------------------------- 1 | %_NTTREE%\conpixels.exe %1 %2 %3 %4 %5 %6 %7 %8 %9 -------------------------------------------------------------------------------- /src/tools/pixels/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/pixels/precomp.h -------------------------------------------------------------------------------- /src/tools/pixels/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/pixels/res.rc -------------------------------------------------------------------------------- /src/tools/pixels/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/pixels/sources -------------------------------------------------------------------------------- /src/tools/scratch/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/scratch/main.cpp -------------------------------------------------------------------------------- /src/tools/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/test/main.cpp -------------------------------------------------------------------------------- /src/tools/test/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/test/precomp.h -------------------------------------------------------------------------------- /src/tools/test/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/test/res.rc -------------------------------------------------------------------------------- /src/tools/test/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/test/sources -------------------------------------------------------------------------------- /src/tools/texttests/fira.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/texttests/fira.txt -------------------------------------------------------------------------------- /src/tools/texttests/foo.txt: -------------------------------------------------------------------------------- 1 | aardvark!😍🤑🤢👽🦄HiThere!ひらがなemoji 2 | 3 | -------------------------------------------------------------------------------- /src/tools/vtapp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vtapp/App.config -------------------------------------------------------------------------------- /src/tools/vtapp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vtapp/Program.cs -------------------------------------------------------------------------------- /src/tools/vtapp/Program2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vtapp/Program2.cs -------------------------------------------------------------------------------- /src/tools/vtapp/Sources.pkg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vtapp/Sources.pkg.xml -------------------------------------------------------------------------------- /src/tools/vtapp/VTApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vtapp/VTApp.csproj -------------------------------------------------------------------------------- /src/tools/vtapp/product.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vtapp/product.pbxproj -------------------------------------------------------------------------------- /src/tools/vtapp/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vtapp/sources -------------------------------------------------------------------------------- /src/tools/vtpipeterm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vtpipeterm/main.cpp -------------------------------------------------------------------------------- /src/tools/vtpipeterm/res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vtpipeterm/res.rc -------------------------------------------------------------------------------- /src/tools/vtpipeterm/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vtpipeterm/sources -------------------------------------------------------------------------------- /src/tools/vttests/burrito.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vttests/burrito.py -------------------------------------------------------------------------------- /src/tools/vttests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vttests/common.py -------------------------------------------------------------------------------- /src/tools/vttests/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tools/vttests/template.py -------------------------------------------------------------------------------- /src/tsf/ConsoleTSF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/ConsoleTSF.cpp -------------------------------------------------------------------------------- /src/tsf/ConsoleTSF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/ConsoleTSF.h -------------------------------------------------------------------------------- /src/tsf/TfCatUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/TfCatUtil.cpp -------------------------------------------------------------------------------- /src/tsf/TfCatUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/TfCatUtil.h -------------------------------------------------------------------------------- /src/tsf/TfConvArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/TfConvArea.cpp -------------------------------------------------------------------------------- /src/tsf/TfConvArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/TfConvArea.h -------------------------------------------------------------------------------- /src/tsf/TfCtxtComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/TfCtxtComp.h -------------------------------------------------------------------------------- /src/tsf/TfDispAttr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/TfDispAttr.cpp -------------------------------------------------------------------------------- /src/tsf/TfDispAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/TfDispAttr.h -------------------------------------------------------------------------------- /src/tsf/TfEditSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/TfEditSession.cpp -------------------------------------------------------------------------------- /src/tsf/TfEditSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/TfEditSession.h -------------------------------------------------------------------------------- /src/tsf/TfTxtevCb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/TfTxtevCb.cpp -------------------------------------------------------------------------------- /src/tsf/contsf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/contsf.cpp -------------------------------------------------------------------------------- /src/tsf/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/globals.h -------------------------------------------------------------------------------- /src/tsf/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/precomp.cpp -------------------------------------------------------------------------------- /src/tsf/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/precomp.h -------------------------------------------------------------------------------- /src/tsf/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/sources -------------------------------------------------------------------------------- /src/tsf/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/sources.dep -------------------------------------------------------------------------------- /src/tsf/tsf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/tsf.vcxproj -------------------------------------------------------------------------------- /src/tsf/tsf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/tsf/tsf.vcxproj.filters -------------------------------------------------------------------------------- /src/types/ColorFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/ColorFix.cpp -------------------------------------------------------------------------------- /src/types/GlyphWidth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/GlyphWidth.cpp -------------------------------------------------------------------------------- /src/types/IUiaEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/IUiaEventDispatcher.h -------------------------------------------------------------------------------- /src/types/IUiaTraceable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/IUiaTraceable.h -------------------------------------------------------------------------------- /src/types/ThemeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/ThemeUtils.cpp -------------------------------------------------------------------------------- /src/types/UiaTextRangeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/UiaTextRangeBase.cpp -------------------------------------------------------------------------------- /src/types/UiaTextRangeBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/UiaTextRangeBase.hpp -------------------------------------------------------------------------------- /src/types/UiaTracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/UiaTracing.cpp -------------------------------------------------------------------------------- /src/types/UiaTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/UiaTracing.h -------------------------------------------------------------------------------- /src/types/colorTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/colorTable.cpp -------------------------------------------------------------------------------- /src/types/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/convert.cpp -------------------------------------------------------------------------------- /src/types/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/dirs -------------------------------------------------------------------------------- /src/types/inc/ColorFix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/inc/ColorFix.hpp -------------------------------------------------------------------------------- /src/types/inc/GlyphWidth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/inc/GlyphWidth.hpp -------------------------------------------------------------------------------- /src/types/inc/IInputEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/inc/IInputEvent.hpp -------------------------------------------------------------------------------- /src/types/inc/ThemeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/inc/ThemeUtils.h -------------------------------------------------------------------------------- /src/types/inc/User32Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/inc/User32Utils.hpp -------------------------------------------------------------------------------- /src/types/inc/colorTable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/inc/colorTable.hpp -------------------------------------------------------------------------------- /src/types/inc/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/inc/convert.hpp -------------------------------------------------------------------------------- /src/types/inc/sgrStack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/inc/sgrStack.hpp -------------------------------------------------------------------------------- /src/types/inc/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/inc/utils.hpp -------------------------------------------------------------------------------- /src/types/inc/viewport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/inc/viewport.hpp -------------------------------------------------------------------------------- /src/types/lib/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/lib/sources -------------------------------------------------------------------------------- /src/types/lib/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/lib/sources.dep -------------------------------------------------------------------------------- /src/types/lib/types.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/lib/types.vcxproj -------------------------------------------------------------------------------- /src/types/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/precomp.cpp -------------------------------------------------------------------------------- /src/types/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/precomp.h -------------------------------------------------------------------------------- /src/types/sgrStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/sgrStack.cpp -------------------------------------------------------------------------------- /src/types/sources.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/sources.inc -------------------------------------------------------------------------------- /src/types/ut_types/UuidTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/ut_types/UuidTests.cpp -------------------------------------------------------------------------------- /src/types/ut_types/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/ut_types/sources -------------------------------------------------------------------------------- /src/types/ut_types/sources.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/ut_types/sources.dep -------------------------------------------------------------------------------- /src/types/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/utils.cpp -------------------------------------------------------------------------------- /src/types/viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/types/viewport.cpp -------------------------------------------------------------------------------- /src/unit.tests.x64.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/unit.tests.x64.runsettings -------------------------------------------------------------------------------- /src/unit.tests.x86.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/unit.tests.x86.runsettings -------------------------------------------------------------------------------- /src/wap-common.build.post.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/wap-common.build.post.props -------------------------------------------------------------------------------- /src/wap-common.build.pre.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/wap-common.build.pre.props -------------------------------------------------------------------------------- /src/winconpty/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/winconpty/device.h -------------------------------------------------------------------------------- /src/winconpty/dll/winconpty.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/winconpty/dll/winconpty.def -------------------------------------------------------------------------------- /src/winconpty/ft_pty/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/winconpty/ft_pty/precomp.cpp -------------------------------------------------------------------------------- /src/winconpty/ft_pty/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/winconpty/ft_pty/precomp.h -------------------------------------------------------------------------------- /src/winconpty/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/winconpty/precomp.cpp -------------------------------------------------------------------------------- /src/winconpty/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/winconpty/precomp.h -------------------------------------------------------------------------------- /src/winconpty/winconpty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/winconpty/winconpty.cpp -------------------------------------------------------------------------------- /src/winconpty/winconpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/src/winconpty/winconpty.h -------------------------------------------------------------------------------- /tools/CheckPSVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/CheckPSVersion.ps1 -------------------------------------------------------------------------------- /tools/CompressJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/CompressJson.ps1 -------------------------------------------------------------------------------- /tools/ConsoleTypes.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/ConsoleTypes.natvis -------------------------------------------------------------------------------- /tools/FeatureStagingSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/FeatureStagingSchema.xsd -------------------------------------------------------------------------------- /tools/GenerateHeaderForJson.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/GenerateHeaderForJson.ps1 -------------------------------------------------------------------------------- /tools/Get-OSSConhostLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/Get-OSSConhostLog.ps1 -------------------------------------------------------------------------------- /tools/OpenConsole.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/OpenConsole.psm1 -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/TestTableWriter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/TestTableWriter/README.md -------------------------------------------------------------------------------- /tools/WindbgExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/WindbgExtension.js -------------------------------------------------------------------------------- /tools/WindowsCheckPSVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/WindowsCheckPSVersion.ps1 -------------------------------------------------------------------------------- /tools/bcx.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/bcx.cmd -------------------------------------------------------------------------------- /tools/bcz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/bcz.cmd -------------------------------------------------------------------------------- /tools/bx.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/bx.cmd -------------------------------------------------------------------------------- /tools/bx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/bx.ps1 -------------------------------------------------------------------------------- /tools/bz.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/bz.cmd -------------------------------------------------------------------------------- /tools/echokey.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/echokey.cmd -------------------------------------------------------------------------------- /tools/openbash.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/openbash.cmd -------------------------------------------------------------------------------- /tools/opencon.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/opencon.cmd -------------------------------------------------------------------------------- /tools/openps.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/openps.cmd -------------------------------------------------------------------------------- /tools/openvt.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/openvt.cmd -------------------------------------------------------------------------------- /tools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/packages.config -------------------------------------------------------------------------------- /tools/razzle.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/razzle.cmd -------------------------------------------------------------------------------- /tools/runformat.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/runformat.cmd -------------------------------------------------------------------------------- /tools/runft.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/runft.cmd -------------------------------------------------------------------------------- /tools/runuia.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/runuia.cmd -------------------------------------------------------------------------------- /tools/runut.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/runut.cmd -------------------------------------------------------------------------------- /tools/runxamlformat.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/runxamlformat.cmd -------------------------------------------------------------------------------- /tools/testcon.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/testcon.cmd -------------------------------------------------------------------------------- /tools/tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/tests.xml -------------------------------------------------------------------------------- /tools/vso_ut.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lafcadia/terminal/HEAD/tools/vso_ut.cmd --------------------------------------------------------------------------------