Fix local tests (#20120)
Summary of the Pull Request
Fixes TabTests.cpp. Changes include:
- add
"closeOnExit": "never"to some tests to avoid the race condition discussed in #14623. It keeps the tabs/panes around so that we can actually test them.- removes the
assert(false)inTermControl::MinimumSize(). I’ve been hitting this assert in dev builds every time I split a pane. I think it isn’t adding value, but if we want to investigate it further, we can.- update MRU tests to not use the command palette (aka tab switcher) UI. The UI requires you to hold a modifier key down to keep it displayed. That isn’t something we can simulate. Instead we just use the relevant APIs to simulate switching tabs. This is ok because the
MRUlist is still updated, so we’re still able to validate that we’re updating it properly.- Add
Tab[idx]andMRU[idx]notation to MRU tests to make them easier to followValidation Steps Performed
✅ local tests pass
Closes #19610 Closes #14623
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802032778号
Welcome to the Windows Terminal, Console and Command-Line repo
Table of Contents
This repository contains the source code for:
conhost.exe)Related repositories include:
Installing and running Windows Terminal
Microsoft Store [Recommended]
Install the Windows Terminal from the Microsoft Store. This allows you to always be on the latest version when we release new builds with automatic upgrades.
This is our preferred method.
Other install methods
Via GitHub
For users who are unable to install Windows Terminal from the Microsoft Store, released builds can be manually downloaded from this repository’s Releases page.
Download the
Microsoft.WindowsTerminal_<versionNumber>.msixbundlefile from the Assets section. To install the app, you can simply double-click on the.msixbundlefile, and the app installer should automatically run. If that fails for any reason, you can try the following command at a PowerShell prompt:Via Windows Package Manager CLI (aka winget)
winget users can download and install the latest Terminal release by installing the
Microsoft.WindowsTerminalpackage:Via Chocolatey (unofficial)
Chocolatey users can download and install the latest Terminal release by installing the
microsoft-windows-terminalpackage:To upgrade Windows Terminal using Chocolatey, run the following:
If you have any issues when installing/upgrading the package please go to the Windows Terminal package page and follow the Chocolatey triage process
Via Scoop (unofficial)
Scoop users can download and install the latest Terminal release by installing the
windows-terminalpackage:To update Windows Terminal using Scoop, run the following:
If you have any issues when installing/updating the package, please search for or report the same on the issues page of Scoop Extras bucket repository.
Installing Windows Terminal Canary
Windows Terminal Canary is a nightly build of Windows Terminal. This build has the latest code from our
mainbranch, giving you an opportunity to try features before they make it to Windows Terminal Preview.Windows Terminal Canary is our least stable offering, so you may discover bugs before we have had a chance to find them.
Windows Terminal Canary is available as an App Installer distribution and a Portable ZIP distribution.
The App Installer distribution supports automatic updates. Due to platform limitations, this installer only works on Windows 11.
The Portable ZIP distribution is a portable application. It will not automatically update and will not automatically check for updates. This portable ZIP distribution works on Windows 10 (19041+) and Windows 11.
Learn more about the types of Windows Terminal distributions.
Terminal & Console Overview
Please take a few minutes to review the overview below before diving into the code:
Windows Terminal
Windows Terminal is a new, modern, feature-rich, productive terminal application for command-line users. It includes many of the features most frequently requested by the Windows command-line community including support for tabs, rich text, globalization, configurability, theming & styling, and more.
The Terminal will also need to meet our goals and measures to ensure it remains fast and efficient, and doesn’t consume vast amounts of memory or power.
The Windows Console Host
The Windows Console host,
conhost.exe, is Windows’ original command-line user experience. It also hosts Windows’ command-line infrastructure and the Windows Console API server, input engine, rendering engine, user preferences, etc. The console host code in this repository is the actual source from which theconhost.exein Windows itself is built.Since taking ownership of the Windows command-line in 2014, the team added several new features to the Console, including background transparency, line-based selection, support for ANSI / Virtual Terminal sequences, 24-bit color, a Pseudoconsole (“ConPTY”), and more.
However, because Windows Console’s primary goal is to maintain backward compatibility, we have been unable to add many of the features the community (and the team) have been wanting for the last several years including tabs, unicode text, and emoji.
These limitations led us to create the new Windows Terminal.
Shared Components
While overhauling Windows Console, we modernized its codebase considerably, cleanly separating logical entities into modules and classes, introduced some key extensibility points, replaced several old, home-grown collections and containers with safer, more efficient STL containers, and made the code simpler and safer by using Microsoft’s Windows Implementation Libraries - WIL.
This overhaul resulted in several of Console’s key components being available for re-use in any terminal implementation on Windows. These components include a new DirectWrite-based text layout and rendering engine, a text buffer capable of storing both UTF-16 and UTF-8, a VT parser/emitter, and more.
Creating the new Windows Terminal
When we started planning the new Windows Terminal application, we explored and evaluated several approaches and technology stacks. We ultimately decided that our goals would be best met by continuing our investment in our C++ codebase, which would allow us to reuse several of the aforementioned modernized components in both the existing Console and the new Terminal. Further, we realized that this would allow us to build much of the Terminal’s core itself as a reusable UI control that others can incorporate into their own applications.
The result of this work is contained within this repo and delivered as the Windows Terminal application you can download from the Microsoft Store, or directly from this repo’s releases.
Resources
For more information about Windows Terminal, you may find some of these resources useful and interesting:
FAQ
I built and ran the new Terminal, but it looks just like the old console
Cause: You’re launching the incorrect solution in Visual Studio.
Solution: Make sure you’re building & deploying the
CascadiaPackageproject in Visual Studio.Documentation
All project documentation is located at aka.ms/terminal-docs. If you would like to contribute to the documentation, please submit a pull request on the Windows Terminal Documentation repo.
Contributing
We are excited to work alongside you, our amazing community, to build and enhance Windows Terminal!
BEFORE you start work on a feature/fix, please read & follow our Contributor’s Guide to help avoid any wasted or duplicate effort.
Communicating with the Team
The easiest way to communicate with the team is via GitHub issues.
Please file new issues, feature requests and suggestions, but DO search for similar open/closed preexisting issues before creating a new issue.
If you would like to ask a question that you feel doesn’t warrant an issue (yet), please reach out to us via Twitter:
Developer Guidance
Prerequisites
You can configure your environment to build Terminal in one of two ways:
Using WinGet configuration file
After cloning the repository, you can use a WinGet configuration file to set up your environment. The default configuration file installs Visual Studio 2022 Community & rest of the required tools. There are two other variants of the configuration file available in the .config directory for Enterprise & Professional editions of Visual Studio 2022. To run the default configuration file, you can either double-click the file from explorer or run the following command:
Manual configuration
Building the Code
OpenConsole.slnx may be built from within Visual Studio or from the command-line using a set of convenience scripts & tools in the /tools directory:
Building in PowerShell
Building in Cmd
Running & Debugging
To debug the Windows Terminal in VS, right click on
CascadiaPackage(in the Solution Explorer) and go to properties. In the Debug menu, change “Application process” and “Background task process” to “Native Only”.You should then be able to build & debug the Terminal project by hitting F5. Make sure to select either the “x64” or the “x86” platform - the Terminal doesn’t build for “Any Cpu” (because the Terminal is a C++ application, not a C# one).
Coding Guidance
Please review these brief docs below about our coding practices.
This is a work in progress as we learn what we’ll need to provide people in order to be effective contributors to our project.
Code of Conduct
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.