Windows Terminal Preview 1.18 Release

Welcome back to another Windows Terminal release! This release updates Windows Terminal to version 1.17 and includes all of the features from this previous blog post. Additionally, Windows Terminal Preview is getting an update to version 1.18 and will include all the features detailed here, so let’s talk all about them!

As always, you can install Windows Terminal and Windows Terminal Preview from the Microsoft Store, from the GitHub releases page, or by using winget.

Tab Tearout​


Yes! We finally have tab tearout! This has been a highly requested feature since the dawn of Terminal time. Starting in Windows Terminal Preview 1.18, you will now be able to tear out the tabs in Windows Terminal.

tear-tab.gif

You will also be able to move tabs from one terminal window into the other.

attach-tab.gif

Environment Variable Updates​


The Windows Terminal will now reload the environment variables automatically when a new tab or pane is opened! No longer do you need to fully shut down the Terminal after installing something and changing the PATH – just open a new tab (or restart the current one) and head off to the races.

In addition, you can now add environment variables in your settings.json. Shoutout to @ianjoneill for this community-contributed feature! This can be done in defaults or in any profile.
In the example below, I set two environment variables, both named MY_ENVIRONMENT_VARIABLE, in defaults and in my PowerShell profile:

JSON​


Code:
"profiles": 
    {
        "defaults": 
        {
            "environment": {
                "MY_ENVIRONMENT_VARIABLE": "Hi from defaults!"
            },
        },
        "list": 
        [
            {
                "guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
                "name": "PowerShell",
                "source": "Windows.Terminal.PowershellCore",
                "environment": 
                {
                    "MY_ENVIRONMENT_VARIABLE": "Hi from PowerShell!"
                }
            }
        ]
    }

The environment variables you set in defaults will be available to all of your profiles. The environment variables that you set within a specific profile will only be available for that specific profile.

This means that if I print the value of MY_ENVIRONMENT_VARIABLE in my PowerShell profile, then I will see “Hi from PowerShell!”

environmentvariablespowershell.png

If I print the value of MY_ENVIRONMENT_VARIABLE in any other profile such as Command Prompt, then I will see “Hi from defaults!”

environmentvariablescommandprompt.png

Right-Click Context Menu (Experimental)​


This is an experimental feature that needs to be manually enabled. To manually enable this feature, add "experimental.rightClickContextMenu": "true" in the defaults section of your profiles section of your settings.json:

JSON​


Code:
"profiles": 
{
    "defaults": 
    {
        "experimental.rightClickContextMenu": true
    },
    ...

After enabling this feature, you will be able to see a context menu after right-clicking the shell in your terminal.

defaultrightclickcontextmenu.png

By default, you will see Paste, Split Pane, Duplicate Tab, and Close Tab as your options.
If you highlight text and open the right click context menu, you will also see a Copy option next to Paste. If you have another pane open, then you will also see Close Pane as another option.

If you have our experimental shell integration feature enabled, then you will also see Select Command and Select Output as options.

shellintegration.gif

Enabling shell integration marks vary from shell to shell. To learn how to enable shell integration for your favorite shell, visit this Shell integration tutorial to find out more!

Atlas Engine Improvements​


Our experimental text rendering engine, the AtlasEngine, has gotten major improvements in Windows Terminal Preview 1.18. This text rendering engine has been nearly, completely rewritten to support overlapping text and, as a result, will no longer cut off italic text, emojis, or complex scripts. It will continue to clip box glyphs to their cells.
Below is a series of “before” and “after” pictures of the Atlas Engine rewrites.

Here is a before image of Fira Code with the old AtlasEngine

FiraCode_cpp_AtlasEngine_v1.png
Here is an after image of Fira Code with our new AtlasEngine in 1.18 Preview.

FiraCode_cpp_AtlasEngine_v2.png
We can see that the old AtlasEngine shrinks glyphs. In our new AtlasEngine, we now handle those glyphs correctly.

We also have a before image of the Code New Roman font as an example.

CodeNewRoman_NF_AtlasEngine_v1.png

Here is an after image for the Code New Roman font with AtlasEngine in 1.18 Preview.

CodeNewRoman_NF_AtlasEngine_v2.png

In the screenshots above, you can see how our AtlasEngine rewrite in 1.18 Preview fixed powerline rendering. We now have no weird gaps, no cut off glyphs, and no shrunken glyphs. There is now also proper overlapping glyphs in the APL set, 2714.png in the Misc. glyphs row, and proper inversion of complex Unicode (without making the glyphs larger than they are supposed to be.)

We have also ensured that the AtlasEngine continues to support animated shaders, Han unification, and loc1 glyph variants in Windows Terminal Preview 1.18. The AtlasEngine will also now be used to display the Appearance preview in the Windows Terminal Settings UIs for profiles which it is enabled.

Portable Mode​


As of stable channel version 1.17, Windows Terminal will support being deployed in “Portable mode”. Portable mode ensures that all data created and maintained by Windows Terminal is saved next to the application so that it can be more easily moved across different environments.

Portable mode is supported by the unpackaged “ZIP” distribution. This is an officially-supported mode of execution where Windows Terminal stores its settings in a settings folder next to WindowsTerminal.exe. Portable mode is not supported in the packaged or preinstallation kit distributions of Windows Terminal.

The unpackaged and portable mode distributions of Windows Terminal allow you to use Terminal without installing it globally, e.g. on systems where you may not have permission to install MSIX packages or download software from the Microsoft Store. Portable mode allows you to carry around or archive a preconfigured installation of Windows Terminal and run it from a network share, cloud drive or USB flash drive. Any such installation is self-contained and will not interfere with other installed distributions of Windows Terminal.

Portable mode needs to be enabled manually. After unzipping the Windows Terminal download, create a file named .portable next to WindowsTerminal.exe.
Windows Terminal will automatically create a directory named settings after you launch WindowsTerminal.exe. That settings directory will store both settings and runtime state such as window layouts.

Note that Windows Terminal will NOT automatically reload its settings and transform your terminal into portable mode right after you create the .portable file.
This change will only apply after you relaunch Terminal. You can verify if you are in portable mode, by selecting “About” in the dropdown menu.

portablemode.png

From here, you can customize Windows Terminal to your liking and then copy that entire Windows Terminal folder to a USB flash drive or network share to use on the go or to share with others!

For more information on the various distribution types that Windows Terminal offers, please see our distribution docs!

Usability Updates​


26a1.png Windows Terminal can now use Ctrl+Shift to run terminal elevated from the context menu (thanks @jamespack!)

26a1.png Users can now enable and disable read-only mode rather than toggling it with the enableReadOnly and disableReadOnly actions (thanks @Swinkid!)

26a1.png We added “legacy” themes to our available default themes. Check them out in the Settings UI!

26a1.png We improved the preview text in the Settings UI and enabled the cursor

26a1.png Users can now customize cell sizes and line spacing

26a1.png A warning now appears when a proportional font is selected (thanks again @jamespack!)

26a1.png We added an action to immediately restart a connection (restartConnection). You also manually invoke this menu with a keyboard shortcut by binding a keybinding instead

26a1.png We added an action to manually invoke the control context menu

26a1.png Added jump list support for indirect icon references (thanks yet again @jamespack!)

26a1.png $theme.tab.showCloseButton now supports activeOnly, to display the x only on the active tab (thanks @kovdu!)

26a1.png Any WSL distribution named rancher-desktop or rancher-desktop-data will be ignored. Thanks for helping us with this, @jamespack. For more information on this change, please see issue #12757 on GitHub.

Miscellaneous Improvements​


1f6e0.png Added support for horizontal margin sequences (thanks @j4james!)

1f6e0.png Added support for bracketed paste mode in ConHost (thanks again @j4james!)

1f6e0.png Added support for CSI 18t (thanks @michalnpl!)

1f6e0.png Added subtext to why “Always show tabs” is not toggleable in the Settings UI (thanks @BenConstable9!)

1f6e0.png The reset button is now accessible with description in reset (thanks @michalnpl!)

1f6e0.png We refactored how connection restart is handled and added an action for restartConnection for manually restarting a tab or pane

1f6e0.png If you are using the FTCS “start of command”, “start of output” and “end of output” marks (OSC 133), you can now use the selectCommand and selectOutput actions to select the command or output as demarcated by those sequences

Bug Fixes​


1f41b.png Active attributes are now preserved during Virtual Terminal (VT) resize operations (thanks @j4james!)

1f41b.png LineFeed and PrintString functionality is now merged into AdaptDispatch (thanks again @j4james!)

1f41b.png ConHost now respects the codepage stored in .LNK files (thanks @michalnpl!)

1f41b.png Windows Terminal will now focus on the shell instead of the titlebar when a profile is selected from a nested menu entry (thanks @kkostrzewa!)

1f41b.png We now manually pre-evaluate the starting directory when calling elevate-shim

1f41b.png We now use a “virtual CWD” for each terminal window

1f41b.png We fixed a bug in default terminal startup that should fix some apps that immediately print lots of text to the console

1f41b.png We now use the persisted position with centerOnLaunch:true

Top contributors​


We love working with the community and recognizing those who made an impact for each release. Here are the community members who helped out for this one!

Contributors who created the most merged pull requests​


1f3c6.png j4james

1f3c6.png jamespack

1f3c6.png @ianjoneill

Contributors who opened the most non-duplicate issues​


1f3c6.png j4james

1f3c6.png Saiteja341

1f3c6.png Vampire

Contributors who provided the most comments on pull requests​


1f3c6.png j4james

1f3c6.png jamespack

1f3c6.png @ianjoneill

I would also like to give additional recognition to @kovdu, @Swinkid, @Yovach, and MikuAuahDark for their help on documentation, code health, grammar, spelling, workflow security and maintenance!

Mahalo!​


We hope you enjoy this latest release of Windows Terminal Preview! More information on these new features can be found on our docs site and if you find any bugs or have feature requests, feel free to file them on GitHub. If you have any questions you can reach out to Christopher Nguyen (@nguyen_dows) on Twitter.

Thank you!

Jan2023Signatures.png

The post Windows Terminal Preview 1.18 Release appeared first on Windows Command Line.

Continue reading...
 

Similar threads

C
Replies
0
Views
55
Christopher Nguyen
C
C
Replies
0
Views
45
Christopher Nguyen
C
C
Replies
0
Views
94
Christopher Nguyen
C
C
Replies
0
Views
63
Christopher Nguyen
C
K
Replies
0
Views
35
Kayla Cinnamon
K
Back
Top Bottom