• Home
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Terms & Conditions
Flyy Tech
  • Home
  • Apple
  • Applications
    • Computers
    • Laptop
    • Microsoft
  • Security
  • Smartphone
  • Gaming
  • Entertainment
    • Literature
    • Cooking
    • Fitness
    • lifestyle
    • Music
    • Nature
    • Podcasts
    • Travel
    • Vlogs
  • Camera
  • Audio
No Result
View All Result
  • Home
  • Apple
  • Applications
    • Computers
    • Laptop
    • Microsoft
  • Security
  • Smartphone
  • Gaming
  • Entertainment
    • Literature
    • Cooking
    • Fitness
    • lifestyle
    • Music
    • Nature
    • Podcasts
    • Travel
    • Vlogs
  • Camera
  • Audio
No Result
View All Result
Flyy Tech
No Result
View All Result

Windows Terminal Preview 1.15 Release

flyytech by flyytech
September 3, 2022
Home Microsoft
Share on FacebookShare on Twitter


Welcome back to another Windows Terminal release! This release updates Windows Terminal to version 1.14 and includes all of the features from this previous blog post. Additionally, Windows Terminal Preview is getting an update to version 1.15 and will include all the features detailed here. As always, you can install Windows Terminal and Windows Terminal Preview from the Microsoft Store or from the GitHub releases page. Now, let’s get into the good stuff! This release is dedicated to all the Marks out there. 😉

Keyboard selection (mark mode)

You can now use your keyboard to select any text in the text buffer with mark mode! You can enter mark mode by typing Ctrl+Shift+M. When in mark mode, you can use the arrow keys to move to your starting position, then you can hold Shift and use the arrow keys to make your selection. Esc will exit mark mode and Ctrl+A selects all text in the buffer.

Image Mark Mode

Mark mode actions

⚡ markMode: Toggles mark mode.

⚡ toggleBlockSelection: Allows you to create a block selection using only the keyboard.

⚡ switchSelectionEndpoint: When modifying a selection using the keyboard, you are moving one end of the selection around. This action switches focus to the other selection marker.

Windows Terminal now supports scroll marks! You can automatically add scroll marks to your profile for each command that’s entered by adding the experimental.autoMarkPrompts setting. Using this setting alone will allow you to scroll to each mark with the scroll mark actions (detailed below), however they won’t be visible in the scrollbar. If you want the scroll marks to also appear in the scrollbar, you’ll need to add the experimental.showMarksOnScrollbar setting to your profile. Please note that this feature is experimental and is subject to future changes.

"experimental.autoMarkPrompts": true,
"experimental.showMarksOnScrollbar": true

You can also add marks to your buffer with the iterm2 OSC 1337 ; SetMark sequence or with the addMark action.

Here’s some JSON you can add to your settings file to get started:

// actions
        { "keys": "ctrl+up", "command": { "action": "scrollToMark", "direction": "previous" }, "name": "Previous mark" },
        { "keys": "ctrl+down", "command": { "action": "scrollToMark", "direction": "next" }, "name": "Next mark" },
        { "keys": "ctrl+pgup", "command": { "action": "scrollToMark", "direction": "first" }, "name": "First mark" },
        { "keys": "ctrl+pgdn", "command": { "action": "scrollToMark", "direction": "last" }, "name": "Last mark" },
        { "command": { "action": "addMark" } },
        { "command": { "action": "addMark", "color": "#ff00ff" } },
        { "command": { "action": "addMark", "color": "#0000ff" } },
        { "command": { "action": "clearAllMarks" } },

// profiles.defaults
        "experimental.autoMarkPrompts": true,
        "experimental.showMarksOnScrollbar": true,

Image Scroll Marks

Scroll mark actions

⚡ addMark: Adds a scroll mark to your text buffer. If there’s a selection, the mark is placed at the selection, otherwise it’s placed at the cursor row.

👉 The addMark action has an optional color parameter that lets you set the color of the scroll mark.

⚡ scrollToMark: Scrolls to the scroll mark in the given direction.

👉 The direction parameter for scrollToMark accepts first, previous, next, and last.

⚡ clearMark: Clears scroll mark at the current position, either at a selection if there is one or at the cursor position.

⚡ clearAllMarks: Clears all scroll marks in the text buffer.

PowerShell “black bars” patch removal

This build removes the patch that prevented unexpected black backgrounds (which may manifest as black bars stretching across the screen) from appearing while PowerShell is running. We have chosen to remove this workaround as newer versions of PowerShell’s PSReadline component contain a fix for the issue. As a result of this change, Oh-My-Posh will once again be able to display prompt elements using a black background color.

❗ If you see black backgrounds appearing behind text while typing a command in PowerShell, make sure your PSReadline version is up to date. You can update your version of PSReadline by running the command, Update-Module PSReadline.

Miscellaneous improvements

🛠️ Windows Terminal now supports the DECPS escape sequence, allowing you to play sounds through the terminal (Thanks @j4james!).

🛠️ If the Windows Terminal Preview settings file is empty when launching, the file will launch as a copy of Windows Terminal’s settings (Thanks @huiyooumich!).

🛠️ Color schemes now accept "magenta" and "brightMagenta" in place of "purple" and "brightPurple" (Thanks @matthewd673!).

🛠️ The Windows Terminal project now uses a single coordinate type, a change that was a +3610, -3906 line diff(!).

🛠️ The following keyboard accelerators are now available for the shell extension: T for Open in Terminal, P for Open in Terminal Preview, and D for Open in Terminal (Dev) (Thanks @ianjoneill!).

Bug fixes

🐛 The terminal should no longer crash if you delete the last profile.

🐛 The navigation view footer and save buttons are no longer misaligned in the settings UI (Thanks @HO-COOH!).

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 opened the most non-duplicate issues

🏆 jredfox

🏆 j4james

🏆 ssccinng

🏆 elsaco

🏆 rjk

🏆 Poopooracoocoo

🏆 ohault

🏆 FANS4ever

🏆 epiciskandar

🏆 Andrew1988123123

🏆 MatejKafka

Contributors who created the most merged pull requests

🏆 j4james

🏆 wiryallcserviceseducative

🏆 HO-COOH

🏆 ianjoneill

🏆 koutingting

🏆 matthewd673

🏆 koutingting12345

🏆 starstonetalent

🏆 leejy12

🏆 cyberdev101

🏆 ofek

🏆 j4james

🏆 leejy12

🏆 ofek

🏆 KotlinIsland

🏆 PetterS

🏆 dansmor7

Cheers!

If you’d like to learn more about Windows Terminal, you can visit our docs site to find more information. If you have any questions or feedback, feel free to reach out to Kayla (@cinnamon_msft) on Twitter. If you find any bugs or have any feature requests, you can file them on our GitHub repo. We hope you enjoy this release of Windows Terminal!

May 2022 signatures


Kayla Cinnamon

Program Manager II, Windows Terminal, Console, Command Line, & Cascadia Code





Source_link

flyytech

flyytech

Next Post
The Best Laptops for Video and Photo Editing 2022

The Best Laptops for Video and Photo Editing 2022

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recommended.

A Capable Contender for the ATX 3.0 Club

A Capable Contender for the ATX 3.0 Club

February 17, 2023
Accelerate Your Incident Response

Accelerate Your Incident Response

December 24, 2022

Trending.

Image Creator now live in select countries for Microsoft Bing and coming soon in Microsoft Edge

Image Creator now live in select countries for Microsoft Bing and coming soon in Microsoft Edge

October 23, 2022
Allen Parr’s false teaching examined. Why you should unfollow him.

Allen Parr’s false teaching examined. Why you should unfollow him.

September 24, 2022
Review: Zoom ZPC-1

Review: Zoom ZPC-1

January 28, 2023
Elden Ring best spells 1.08: Tier lists, sorceries, incantations, and locations

Elden Ring best spells 1.08: Tier lists, sorceries, incantations, and locations

January 14, 2023
How to View Ring Doorbell on a Roku TV

How to View Ring Doorbell on a Roku TV

December 20, 2022

Flyy Tech

Welcome to Flyy Tech The goal of Flyy Tech is to give you the absolute best news sources for any topic! Our topics are carefully curated and constantly updated as we know the web moves fast so we try to as well.

Follow Us

Categories

  • Apple
  • Applications
  • Audio
  • Camera
  • Computers
  • Cooking
  • Entertainment
  • Fitness
  • Gaming
  • Laptop
  • lifestyle
  • Literature
  • Microsoft
  • Music
  • Podcasts
  • Review
  • Security
  • Smartphone
  • Travel
  • Uncategorized
  • Vlogs

Site Links

  • Home
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Terms & Conditions

Recent News

Pico Bricks Review: Great STEM Learning Platform

Pico Bricks Review: Great STEM Learning Platform

April 1, 2023
Pro-Islam Hacktivists Likely a Front for Russia’s Killnet

Pro-Islam Hacktivists Likely a Front for Russia’s Killnet

April 1, 2023

Copyright © 2022 Flyytech.com | All Rights Reserved.

No Result
View All Result
  • Home
  • Apple
  • Applications
    • Computers
    • Laptop
    • Microsoft
  • Security
  • Smartphone
  • Gaming
  • Entertainment
    • Literature
    • Cooking
    • Fitness
    • lifestyle
    • Music
    • Nature
    • Podcasts
    • Travel
    • Vlogs

Copyright © 2022 Flyytech.com | All Rights Reserved.

What Are Cookies
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT