Sei sulla pagina 1di 5

microsoft / Terminal

Dismiss
Join GitHub today
GitHub is home to over 36 million developers working together to host and
review code, manage projects, and build software together.

Sign up

The new Windows Terminal, and the original Windows console host -- all in the same place!
# console # terminal # cmd # wsl # windows-console # command-line # windows-terminal

180 commits 7 branches 15 releases 53 contributors MIT

Branch: master New pull request Find File Clone or download

fghzxm and DHowett-MSFT Improve `startingDirectory` functionality (#604) … Latest commit 6088134 7 hours ago

.github cleanup: move ISSUE_TEMPLATE to .github/ (#423) 11 days ago

.nuget Update razzle to use vswhere (#13) (#606) 20 hours ago

build Add a dev manifest, which will be used by default (#558) 19 hours ago

dep Initial release of the Windows Terminal source code 9 days ago

doc doc: fix some more instances of "it's" (#551) 2 days ago

pkg/appx Initial release of the Windows Terminal source code 9 days ago

res Initial release of the Windows Terminal source code 9 days ago

samples minor readme fix (#494) 4 days ago

src Improve `startingDirectory` functionality (#604) 7 hours ago

tools Update razzle to use vswhere (#13) (#606) 20 hours ago

.gitattributes Initial release of the Windows Terminal source code 9 days ago

.gitignore Add ARM64 output directories to .gitignore (#630) 2 days ago

.gitmodules Lowercase GH org name in .gitmodules (#629) 2 days ago

.vsconfig Add .vsconfig for required components to build (#566) 2 days ago

CODE_OF_CONDUCT.md Add a README and a CODE_OF_CONDUCT 5 days ago

LICENSE Initial release of the Windows Terminal source code 9 days ago

NuGet.Config Add repositorypath to NuGet config. (#503) 4 days ago

OpenConsole.sln Initial release of the Windows Terminal source code 9 days ago

README.md Update razzle to use vswhere (#13) (#606) 20 hours ago

common.openconsole.props Initial release of the Windows Terminal source code 9 days ago

consolegit2gitfilters.json build: port our Azure CI pipeline to YAML (#510) 4 days ago

dirs Initial release of the Windows Terminal source code 9 days ago

README.md

Welcome! This repository contains the source code for:


Windows Terminal
The Windows console host ( conhost.exe )
Components shared between the two projects
ColorTool
Sample projects that show how to consume the Windows Console APIs

Build Status

Project Build Status

Terminal Azure Pipelines succeeded

ColorTool Azure Pipelines never built

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 implements Windows'
command-line infrastructure, and is responsible for hosting the Windows Console API, input engine, rendering engine, and
user preferences. The console host code in this repository is the actual source from which the conhost.exe in Windows
itself is built.

Console's primary goal is to remain backwards-compatible with existing console subsystem applications.

Since assuming ownership of the Windows command-line in 2014, the team has added several new features to the Console,
including window transparency, line-based selection, support for ANSI / Virtual Terminal sequences, 24-bit color, a
Pseudoconsole ("ConPTY"), and more.

However, because the Console's primary goal is to maintain backward compatibility, we've been unable to add many of the
features the community has been asking for, and which we've been wanting to add for the last several years--like tabs!

These limitations led us to create the new Windows Terminal.

Shared Components
While overhauling the Console, we've modernized its codebase considerably. We've cleanly separated 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 WIL header library.

This overhaul work resulted in the creation of several key components that would be useful for any terminal implementation
on Windows, including a new DirectWrite-based text layout and rendering engine, a text buffer capable of storing both UTF-
16 and UTF-8, and a VT parser/emitter.
Building a new terminal
When we started building the new terminal application, we explored and evaluated several approaches and technology
stacks. We ultimately decided that our goals would be best met by sticking with C++ and sharing the aforementioned
modernized components, placing them atop the modern Windows application platform and UI framework.

Further, we realized that this would allow us to build the terminal's renderer and input stack as a reusable Windows UI control
that others can incorporate into their applications.

FAQ

Where can I download Windows Terminal?

There are no binaries to download quite yet.


The Windows Terminal is in the very early alpha stage, and not ready for the general public quite yet. If you want to jump in
early, you can try building it yourself from source.

Otherwise, you'll need to wait until Mid-June for an official preview build to drop.

I built and ran the new Terminal, but it looks just like the old console! What gives?

Firstly, make sure you're building & deploying CascadiaPackage in Visual Studio, NOT Host.EXE . OpenConsole.exe is just
conhost.exe , the same old console you know and love. opencon.cmd will launch openconsole.exe , and unfortunately,
openterm.cmd is currently broken.

Secondly, try pressing Ctrl+t. The tabs are hidden when you only have one tab by default. In the future, the UI will be
dramatically different, but for now, the defaults are supposed to look like the console defaults.

I tried running WindowsTerminal.exe and it crashes!

Don't try to run it unpackaged. Make sure to build & deploy CascadiaPackage from Visual Studio, and run the Windows
Terminal (Preview) app.
Make sure you're on the right version of Windows. You'll need to be on Insider's builds, or wait for the 1903 release, as
the Windows Terminal REQUIRES features from the latest Windows release.

Getting Started

Prerequisites

You must be running Windows 1903 (build >= 10.0.18362.0) or above in order to run Windows Terminal
You must have the 1903 SDK (build 10.0.18362.0) installed
You will need at least VS 2017 installed
You will need to install both the following packages in VS ("Workloads" tab in Visual Studio Installer) :
"Desktop Development with C++"
"Universal Windows Platform Development"
If you're running VS2019, you'll also need to install the "v141 Toolset" and "Visual C++ ATL for x86 and x64"
You will also need to enable Developer Mode in the Settings app to enable installing the Terminal app for running locally.

Contributing
We are excited to work alongside you, our amazing community, to build and enhance Windows Terminal!

We ask that before you start work on a feature that you would like to contribute, please file an issue describing your
proposed change: We will be happy to work with you to figure out the best approach, provide guidance and mentorship
throughout feature development, and help avoid any wasted or duplicate effort.

Remember! Your contributions may be incorporated into future versions of Windows! Because of this, all pull
requests will be subject to the same level of scrutiny for quality, coding standards, performance, globalization,
accessibility, and compatibility as those of our internal contributors.

⚠ Note: The Command-Line Team is actively working out of this repository and will be periodically re-structuring the
code to make it easier to comprehend, navigate, build, test, and contribute to, so DO expect significant changes to code
layout on a regular basis.

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 pre-existing issues before you do.

Please help us keep this repository clean, inclusive, and fun! We will not tolerate any abusive, rude, disrespectful or
inappropriate behavior. Read our Code of Conduct for more details.

If you would like to ask a question that you feel doesn't warrant an issue (yet), please reach out to us via Twitter:

Rich Turner, Program Manager: @richturn_ms

Dustin Howett, Engineering Lead: @dhowett

Michael Niksa, Senior Developer: @michaelniksa

Kayla Cinnamon, Program Manager (especially for UX issues): @cinnamon_msft

Developer Guidance

Building the Code

This repository uses git submodules for some of its dependencies. To make sure submodules are restored or updated, be
sure to run the following prior to building:

git submodule update --init --recursive

OpenConsole.sln may be built from within Visual Studio or from the command-line using MSBuild. To build from the
command line:

.\tools\razzle.cmd
bcz

We've provided a set of convenience scripts as well as README in the /tools directory to help automate the process of
building and running tests.

Coding Guidance

Please review these brief docs below relating to our coding standards etc.

If you find something missing from these docs, feel free to contribute to any of our documentation files anywhere in
the repository (or make some new ones!)
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.

Coding Style
Code Organization
Exceptions in our legacy codebase
Helpful smart pointers and macros for interfacing with Windows in WIL

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.

Potrebbero piacerti anche