{"id":8921,"date":"2023-09-26T12:17:15","date_gmt":"2023-09-26T19:17:15","guid":{"rendered":"https:\/\/devblogs.microsoft.com\/commandline\/?p=8921"},"modified":"2023-09-27T18:56:01","modified_gmt":"2023-09-28T01:56:01","slug":"windows-terminal-preview-1-19-release","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/commandline\/windows-terminal-preview-1-19-release\/","title":{"rendered":"Windows Terminal Preview 1.19 Release"},"content":{"rendered":"<p>The Windows Terminal team is back with a new preview release! Windows Terminal Preview 1.19 introduces new features such as Broadcast Input, Web Search, the Suggestions UI and more!<\/p>\n<p>We are also updating Windows Terminal to version 1.18 which will include all of the features from <a href=\"https:\/\/devblogs.microsoft.com\/commandline\/windows-terminal-preview-1-18-release\/\" rel=\"noopener\" target=\"_blank\">this previous blog post<\/a>. As always, you can install <a href=\"https:\/\/aka.ms\/terminal\" rel=\"noopener\" target=\"_blank\">Windows Terminal<\/a> and <a href=\"https:\/\/aka.ms\/terminal-preview\" rel=\"noopener\" target=\"_blank\">Windows Terminal Preview<\/a> from the Microsoft Store, from the <a href=\"https:\/\/github.com\/microsoft\/terminal\/releases\" rel=\"noopener\" target=\"_blank\">GitHub releases page<\/a>, or by using winget.<\/p>\n<p>Let&#8217;s talk about these new Windows Terminal Preview 1.19 features and how to set them up!<\/p>\n<h2>Broadcast Input<\/h2>\n<p>Broadcast Input allows the contents of one terminal pane to be broadcasted to all the other panes in a tab. To turn on Broadcast Input, select &#8220;Toggle broadcast input to all panes&#8221; in the Command Palette. You can also set Broadcast Input as a keybinding action as well.<\/p>\n<p>We would like to extend a huge thanks to our community members for bringing this <a href=\"https:\/\/github.com\/microsoft\/terminal\/issues\/2634\" rel=\"noopener\" target=\"_blank\">feature request<\/a> to our attention!<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/BroadcastInput.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/BroadcastInput.gif\" alt=\"Input from one terminal pane being broadcasted over all other terminal panes in the window\" width=\"1344\" height=\"897\" class=\"alignnone size-full wp-image-8279\" \/><\/a><\/p>\n<h2>Web Search<\/h2>\n<p>Web Search has been added as an option to our right click context menu. Web Search allows a user to do a web search on selected text in their terminal. Shoutout to <a href=\"https:\/\/github.com\/mpela81\/\" rel=\"noopener\" target=\"_blank\">@mpela81<\/a> for this community contribution!<\/p>\n<p>To enable the right-click context menu, add the following <code>defaults<\/code> object to <code>profiles<\/code> in your <code>settings.json<\/code> file:<\/p>\n<pre><code>    \"profiles\": \n    {\n        \"defaults\": \n        {\n            \"experimental.rightClickContextMenu\": true\n        },\n        ...\n<\/code><\/pre>\n<p>If you highlight and right-click on text, you will be able to do a web search on that highlighted text by clicking &#8220;Web Search&#8221; in the right-click context menu. This will open up a browser window (or new tab if you have an existing browser window open) with your web search results.<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/WebSearch.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/WebSearch.gif\" alt=\"Web Search in Windows Terminal with Bing\" width=\"1344\" height=\"897\" class=\"alignnone size-full wp-image-8279\" \/><\/a><\/p>\n<p>By default, Web Search will do a search on Bing. If you want Web Search to query another URL, then add <code>\"searchWebDefaultQueryUrl\"<\/code> to your <code>settings.json<\/code> file as a global variable and set it to different URL. Below is the default value for this setting as an example:<\/p>\n<pre><code>\"searchWebDefaultQueryUrl\": \"https:\/\/www.bing.com\/search?q=%22%s%22\"\n<\/code><\/pre>\n<p>This feature is also available as a <code>webSearch<\/code> action. You can customize this action to launch any search engine by specifying the <code>queryUrl<\/code>. <code>%s<\/code> will be replaced with your query.<\/p>\n<h2>\u2728 Emoji Support in Command Prompt \u2728<\/h2>\n<p>That&#8217;s right! You are now able to input emojis in your Command Prompt \u2764\ufe0f<\/p>\n<p>Don&#8217;t believe me? Throw some emojis in your Command Prompt and find out \ud83d\ude09<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/EmojiCommandPrompt.png\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/EmojiCommandPrompt.png\" alt=\"Emojis in Command Prompt\" width=\"1344\" height=\"897\" class=\"alignnone size-full wp-image-8279\" \/><\/a><\/p>\n<h2>Unfocused Acrylic<\/h2>\n<p>We now have unfocused acrylic support! This means that unfocused windows of Windows Terminal will appear acrylic instead of opaque. Thank you <a href=\"https:\/\/github.com\/Jaswir\" rel=\"noopener\" target=\"_blank\">@Jaswir<\/a> for this community contribution!<\/p>\n<p>Here is a GIF of unfocused acrylic in action!<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/UnfocusedAcrylic.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/UnfocusedAcrylic.gif\" alt=\"A comparison of acrylic in Windows Terminal and Notepad\" width=\"1344\" height=\"897\" class=\"alignnone size-full wp-image-8279\" \/><\/a><\/p>\n<p>Here&#8217;s a snippet of the JSON used for these settings:<\/p>\n<pre><code>\"opacity\": 85,\n\"useAcrylic\": true\n<\/code><\/pre>\n<h2>Suggestions UI<\/h2>\n<p>The Suggestions UI is a new UI element that provides different types of text suggestions to the user. These suggestions can be anything from command history, saved commands, and more!<\/p>\n<p>This Suggestions UI requires Shell Integration to be enabled in the terminal.<\/p>\n<h3>Enabling Shell Integration<\/h3>\n<p>Enabling Shell Integration is a two-step process.<\/p>\n<p>1) <a href=\"https:\/\/learn.microsoft.com\/en-us\/windows\/terminal\/tutorials\/shell-integration#how-to-enable-shell-integration-marks\/\" rel=\"noopener\" target=\"_blank\">Enable shell integration marks<\/a> in <code>settings.json<\/code> file.<\/p>\n<p>2) Edit your <code>prompt<\/code> to make sure the terminal gets told about the CWD and mark up the prompt with appropriate marks. This is done differently in <a href=\"https:\/\/learn.microsoft.com\/en-us\/windows\/terminal\/tutorials\/shell-integration#powershell-pwshexe\/\" rel=\"noopener\" target=\"_blank\">PowerShell<\/a> and <a href=\"https:\/\/learn.microsoft.com\/en-us\/windows\/terminal\/tutorials\/shell-integration#command-prompt\/\" rel=\"noopener\" target=\"_blank\">Command Prompt<\/a>.<\/p>\n<p>For more information on enabling shell integration, check out our <a href=\"https:\/\/learn.microsoft.com\/en-us\/windows\/terminal\/tutorials\/shell-integration\/\" rel=\"noopener\" target=\"_blank\">tutorial on enabling shell integration<\/a>.<\/p>\n<h3>Using Command History in the Suggestions UI<\/h3>\n<p>Once you have enabled Shell Integration, you will want to create a new <code>showSuggestions<\/code> action that will show the Suggestions UI with your command history as its suggestions source. This should be done in your <code>settings.json<\/code> file in <code>actions<\/code>. Here is an example:<\/p>\n<pre><code>    \"actions\": \n    [\n        {\n            \"command\": \n            {\n                \"action\": \"showSuggestions\",\n                \"source\": \"commandHistory\",\n                \"useCommandline\": true\n            },\n            \"keys\": \"ctrl+h\"\n        }\n    ],\n<\/code><\/pre>\n<p>In this example, we have created a new action that allows us to show the Suggestions UI and populate suggestions based on the our command history. This action uses the <kbd>Ctrl+H<\/kbd> keybinding but feel free to change it to use whatever keybinding you want!<\/p>\n<p>And here is the result! In this image, you will see the Suggestions UI pop up with the commands that I just ran (<code>ls<\/code> and <code>git status<\/code>)<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/SuggestionsUIHistory.png\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/SuggestionsUIHistory.png\" alt=\"Suggestions UI using command history as a suggestions source in PowerShell\" width=\"1344\" height=\"897\" class=\"alignnone size-full wp-image-8279\" \/><\/a><\/p>\n<h3>Using SendInput Actions in the Suggestions UI<\/h3>\n<p>Do you like writing out long commands and having to remember every single argument and flag for them? Because I don&#8217;t \ud83d\ude43<\/p>\n<p>Luckily, the Suggestions UI can also use <code>sendInput<\/code> actions as a suggestions source. A <code>sendInput<\/code> action is an action that sends text input to the shell. If we create a bunch of <code>sendInput<\/code> actions for our favorite commands, then we will no longer need to type them out every time we use them.<\/p>\n<p>To enable the Suggestions UI to use your command history and your <code>sendInput<\/code> actions as a suggestions source, <code>actions<\/code> in your <code>settings.json<\/code> file should look like this.<\/p>\n<pre><code>        {\n            \"command\": \n            {\n                \"action\": \"showSuggestions\",\n                \"source\": \"all\",\n                \"useCommandline\": true\n            },\n            \"keys\": \"ctrl+y\"\n        },\n<\/code><\/pre>\n<p>In this example, we have created a new <code>showSuggestions<\/code> action that allows use all the suggestion sources available to the Suggestions UI including command history and our <code>sendInput<\/code> actions. This action uses the <kbd>Ctrl+Y<\/kbd> keybinding but feel free to change it to use whatever keybinding you want!<\/p>\n<p>Of course, we will need some <code>sendInput<\/code> actions for our Suggestions UI. In the example below, I added some <code>sendInput<\/code> actions for <code>git<\/code> scenarios in my <code>settings.json<\/code> under the <code>showSuggestions<\/code> action:<\/p>\n<pre><code>\"actions\": \n    [\n        {\n            \"command\": \n            {\n                \"action\": \"showSuggestions\",\n                \"source\": \"all\",\n                \"useCommandline\": true\n            },\n            \"keys\": \"ctrl+y\"\n        },\n        {\n            \"command\": \n            {\n                \"action\": \"sendInput\",\n                \"input\": \"git commit -m \\\"\\\"\\u001b[D\"\n            },\n            \"name\": \"commit\"\n        },\n        {\n            \"command\": \n            {\n                \"action\": \"sendInput\",\n                \"input\": \"git checkout -b\"\n            },\n            \"name\": \"new branch\"\n        },\n        {\n            \"command\": \n            {\n                \"action\": \"sendInput\",\n                \"input\": \"git fetch &amp; git pull\\r\"\n            },\n            \"name\": \"fetch&amp;pull\"\n        },\n        {\n            \"command\": \n            {\n                \"action\": \"sendInput\",\n                \"input\": \"git merge origin\/main\\r\"\n            },\n            \"name\": \"merge main\"\n        },\n        {\n            \"command\": \n            {\n                \"action\": \"sendInput\",\n                \"input\": \"git log -10 --pretty=oneline --abbrev-commit\\r\"\n            },\n            \"name\": \"log -10\"\n        }\n    ],\n<\/code><\/pre>\n<p>The above will allow your Suggestions UI to use your command history and those <code>sendInput<\/code> actions as a suggestion source:<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/SuggestionsUI.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/SuggestionsUI.gif\" alt=\"Suggestions UI using command history and sendInput actions as a suggestions source in PowerShell\" width=\"1344\" height=\"897\" class=\"alignnone size-full wp-image-8279\" \/><\/a><\/p>\n<h3>Experimental Shell Completion Menu<\/h3>\n<p>The Suggestions UI can also surface suggestions from Predictors in PowerShell 7. This will require an additional bit of work for setup. You will need to first modify your PowerShell profile with a shell completion protocol and add a few things to your <code>settings.json<\/code> file.<\/p>\n<p>We are currently iterating on different shell completion protocols to allow users to enable this feature easier. For more information on how to set this feature up, please check out the Wiki on <a href=\"https:\/\/github.com\/microsoft\/terminal\/wiki\/Experimental-Shell-Completion-Menu\" rel=\"noopener\" target=\"_blank\">Experimental Shell Completion Menu<\/a> in our GitHub repository.<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/PSSuggestionsUI.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/09\/PSSuggestionsUI.gif\" alt=\"Suggestions UI using PowerShell Predictors as a suggestions source\" width=\"1344\" height=\"897\" class=\"alignnone size-full wp-image-8279\" \/><\/a><\/p>\n<p>If you want to get up-to-date information or participate in the discussions of how we are working to improve this experience, then please check out this <a href=\"https:\/\/github.com\/microsoft\/terminal\/issues\/3121\" rel=\"noopener\" target=\"_blank\">feature request<\/a> on our GitHub repository.<\/p>\n<h2>Usability Updates<\/h2>\n<p>\u26a1 We will now display an indicator in the tab of any disconnected\/closed\/crashed application. You can right-click the tab to restart it! (Thanks <a href=\"https:\/\/github.com\/mpela81\/\" rel=\"noopener\" target=\"_blank\">@mpela81<\/a>!)<\/p>\n<p>\u26a1 The number of search results and positions of hits are now shown in the scrollbar (thanks <a href=\"https:\/\/github.com\/Don-Vito\" rel=\"noopener\" target=\"_blank\">@Don-Vito<\/a>! and <a href=\"https:\/\/github.com\/zadjii-msft\" rel=\"noopener\" target=\"_blank\">@zadjii-msft<\/a>!)<\/p>\n<p>\u26a1 Added a <code>--appendCommandLine<\/code> flag for appending to a command (thanks <a href=\"https:\/\/github.com\/hanpuliu-charles\" rel=\"noopener\" target=\"_blank\">@hanpuliu-charles<\/a>!)<\/p>\n<p>\u26a1 Scroll marks can be cleared by <code>clear<\/code>, <code>cls<\/code>, <code>Clear-Host<\/code>, and other clear buffer actions!<\/p>\n<p>\u26a1 Added an option to default to show an icon in tab, hide tabicon, or make an icon in the tab monochrome (thanks <a href=\"https:\/\/github.com\/bundgaard\" rel=\"noopener\" target=\"_blank\">@bundgaard<\/a>!)<\/p>\n<p>\u26a1 Added support for Erase Color Mode (thanks <a href=\"https:\/\/github.com\/j4james\" rel=\"noopener\" target=\"_blank\">@j4james<\/a>!)<\/p>\n<p>\u26a1 Users can now use an action to display a toast containing the Terminal&#8217;s &#8220;virtual&#8221; CWD.<\/p>\n<p>\u26a1 Allow inheriting env vars from <code>wt<\/code> again and added other env var changes.<\/p>\n<p>\u26a1 Added an experimental <code>experimental.moveCursorWithMouse<\/code> setting for moving the cursor with the mouse. This requires Shell Integration to be enabled.<\/p>\n<p>\u26a1 Added support for setting the window frame color with <code>$theme.window.frame<\/code>, <code>.unfocusedFrame<\/code>, and <code>experimental.rainbowFrame<\/code> (I HIGHLY recommend trying out the \ud83c\udf08<code>experimental.rainbowFrame<\/code>\ud83c\udf08 setting!)<\/p>\n<h2>Performance Improvements<\/h2>\n<p>\ud83d\udd25 We rewrote <code>COOKED_READ_DATA<\/code> to improve Windows Terminal performance.<\/p>\n<p>\ud83d\udd25 We rewrote resize with reflow (<code>TextBuffer::Reflow<\/code>) so it&#8217;s faster and more correct.<\/p>\n<p>\ud83d\udd25 Reduced GdiEngine input latency.<\/p>\n<p>\ud83d\udd25 Reduced the cost of resetting row attributes.<\/p>\n<p>\ud83d\udd25 The text buffer is now vectorized committed on demand and faster than before.<\/p>\n<p>\ud83d\udd25 The whole Settings UI library will only load when you open the Settings UI. This change saves memory.<\/p>\n<h2>Miscellaneous Improvements<\/h2>\n<p>\ud83d\udee0\ufe0f Added support for ITU&#8217;s T.416 &#8211; ODA SGR (38\/48) sequence (thanks again <a href=\"https:\/\/github.com\/tusharsnx\" rel=\"noopener\" target=\"_blank\">@tusharsnx<\/a>!)<\/p>\n<p>\ud83d\udee0\ufe0f You can now copy text without dismissing the text selection by setting <code>dismissSelection<\/code> to <code>false<\/code> (thanks <a href=\"https:\/\/github.com\/gonzalo-garcian\" rel=\"noopener\" target=\"_blank\">@gonzalo-garcian<\/a>!)<\/p>\n<p>\ud83d\udee0\ufe0f Improved <code>Run-Test.ps1<\/code>&#8216;s maintainability and readability (thanks <a href=\"https:\/\/github.com\/Jvr2022\" rel=\"noopener\" target=\"_blank\">@Jvr2022<\/a>!)<\/p>\n<p>\ud83d\udee0\ufe0f Removed telemetry for VT sequences (thanks <a href=\"https:\/\/github.com\/j4james\" rel=\"noopener\" target=\"_blank\">@j4james<\/a>!)<\/p>\n<h2>Accessibility Improvements<\/h2>\n<p>\ud83d\udee0\ufe0f You can now run profiles from the Add tab menu as an admin without a keyboard (thanks <a href=\"https:\/\/github.com\/jamespack\" rel=\"noopener\" target=\"_blank\">@jamespack<\/a>!)<\/p>\n<p>\ud83d\udee0\ufe0f The <code>CommandKeyChord<\/code> in the Command Palette now has a background. This prevents certain accent colors from rendering the KeyChords in an unreadable color (thanks <a href=\"https:\/\/github.com\/RickleAndMortimer\" rel=\"noopener\" target=\"_blank\">@RickleAndMortimer<\/a>!)<\/p>\n<p>\ud83d\udee0\ufe0f Settings now groups elements in their containers for screen readers<\/p>\n<p>\ud83d\udee0\ufe0f Screen reader users can now determine which color scheme is the current default<\/p>\n<p>\ud83d\udee0\ufe0f Default Terminal and Color Scheme ComboBoxes no longer crop at 200% text scale<\/p>\n<p>\ud83d\udee0\ufe0f We&#8217;ve added automation property names to the &#8216;Delete Color Scheme&#8217; button<\/p>\n<h2>Bug Fixes<\/h2>\n<p>\ud83d\udc1b Default Terminal and Color Scheme ComboBoxes no longer crop at 200% text size.<\/p>\n<p>\ud83d\udc1b Fixed horizontal scrolling bugs when using AtlasEngine and DxEngine.<\/p>\n<p>\ud83d\udc1b Fixed VtEngine hang when resizing while scrolling.<\/p>\n<p>\ud83d\udc1b Fixed a crash when duplicating tabs with <code>elevate:true<\/code><\/p>\n<p>\ud83d\udc1b Fixed some AtlasEngine Windows 10 bugs.<\/p>\n<p>\ud83d\udc1b RIS now re-enables win32 and focus events (thanks <a href=\"https:\/\/github.com\/j4james\" rel=\"noopener\" target=\"_blank\">@j4james<\/a>!)<\/p>\n<h2>Top contributors<\/h2>\n<p>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!<\/p>\n<h3>Contributors who created the most merged pull requests<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/tusharsnx\" rel=\"noopener\" target=\"_blank\">tusharsnx<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/j4james\" rel=\"noopener\" target=\"_blank\">j4james<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/mpela81\" rel=\"noopener\" target=\"_blank\">mpela81<\/a><\/p>\n<h3>Contributors who opened the most non-duplicate issues<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/ClaireCJS\" rel=\"noopener\" target=\"_blank\">ClaireCJS<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/scott-xu\" rel=\"noopener\" target=\"_blank\">scott-xu<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/j4james\" rel=\"noopener\" target=\"_blank\">j4james<\/a><\/p>\n<h3>Contributors who provided the most comments on pull requests<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/j4james\" rel=\"noopener\" target=\"_blank\">j4james<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/tusharsnx\" rel=\"noopener\" target=\"_blank\">tusharsnx<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/Jaswir\" rel=\"noopener\" target=\"_blank\">Jaswir<\/a><\/p>\n<p>I would also like to give additional recognition to <a href=\"https:\/\/github.com\/gonzalo-garcian\" rel=\"noopener\" target=\"_blank\">@gonzalo-garcian<\/a>, <a href=\"https:\/\/github.com\/mataha\" rel=\"noopener\" target=\"_blank\">@mataha<\/a>, <a href=\"https:\/\/github.com\/yan12125\" rel=\"noopener\" target=\"_blank\">@yan12125<\/a>, and <a href=\"https:\/\/github.com\/mdgrs-mei\" rel=\"noopener\" target=\"_blank\">@mdgrs-mei <\/a> for their help on documentation, code health, grammar, spelling, workflow security and maintenance!<\/p>\n<h2>Thank you!<\/h2>\n<p>We hope you enjoy this latest release of Windows Terminal Preview! More information on these new features can be found on our <a href=\"https:\/\/aka.ms\/terminal-docs\" rel=\"noopener\" target=\"_blank\">docs site<\/a> and if you find any bugs or have feature requests, feel free to file them on <a href=\"https:\/\/github.com\/microsoft\/terminal\" rel=\"noopener\" target=\"_blank\">GitHub<\/a>. If you have any questions you can reach out to Christopher Nguyen (<a href=\"https:\/\/twitter.com\/nguyen_dows\" rel=\"noopener\" target=\"_blank\">@nguyen_dows<\/a>) on Twitter.<\/p>\n<p>Thanks again for the continued support!<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/01\/Jan2023Signatures.png\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2023\/01\/Jan2023Signatures.png\" alt=\"2023 Signatures\" width=\"1801\" height=\"259\" class=\"alignnone size-full wp-image-8322\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Windows Terminal team is back with a new preview release! Windows Terminal Preview 1.19 introduces new features such as Broadcast Input, Web Search, the Suggestions UI and more! We are also updating Windows Terminal to version 1.18 which will include all of the features from this previous blog post. As always, you can install [&hellip;]<\/p>\n","protected":false},"author":101092,"featured_media":8969,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[10,1,2,6,782],"tags":[],"class_list":["post-8921","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cmd","category-commandline","category-command-line","category-windows-console","category-windows-terminal"],"acf":[],"blog_post_summary":"<p>The Windows Terminal team is back with a new preview release! Windows Terminal Preview 1.19 introduces new features such as Broadcast Input, Web Search, the Suggestions UI and more! We are also updating Windows Terminal to version 1.18 which will include all of the features from this previous blog post. As always, you can install [&hellip;]<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/posts\/8921","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/users\/101092"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/comments?post=8921"}],"version-history":[{"count":0,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/posts\/8921\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/media\/8969"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/media?parent=8921"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/categories?post=8921"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/tags?post=8921"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}