{"id":159593,"date":"2023-09-27T10:25:31","date_gmt":"2023-09-27T14:25:31","guid":{"rendered":"https:\/\/pureinfotech.com\/?p=159593"},"modified":"2023-09-27T10:26:02","modified_gmt":"2023-09-27T14:26:02","slug":"windows-terminal-1-19-web-search-broadcast-emoji","status":"publish","type":"post","link":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/","title":{"rendered":"Windows Terminal 1.19 outs with web search, broadcast, emoji support"},"content":{"rendered":"<ul class=\"sum\">\n<li>Windows Terminal 1.18 is now available as a preview.<\/li>\n<li>This new version introduces Broadcast Input, Web Search, and Suggestions UI.<\/li>\n<li>The update also brings support for emojis and a slew of fixes and improvements.<\/li>\n<\/ul>\n<p>On <a href=\"https:\/\/pureinfotech.com\/tag\/windows-11\">Windows 11<\/a>, the &#8220;Windows Terminal&#8221; app is getting a new (preview) update that bumps the version number to &#8220;1.19&#8221; and brings new features, fixes, and improvements.<\/p>\n<p>In version 1.19, the <a href=\"https:\/\/devblogs.microsoft.com\/commandline\/windows-terminal-preview-1-19-release\/\" target=\"_blank\" rel=\"noopener\">Windows Terminal introduces<\/a> a new Broadcast Input feature. It&#8217;s now possible to perform web searches from the terminal. Also, the app finally adds support for emojis, and it can provide different types of text suggestions. This release also includes a bunch of fixes and other minor improvements.<\/p>\n<h2>Broadcast Input<\/h2>\n<p>Starting with version 1.19, it&#8217;s possible to broadcast the contents from one pane to all the other panes opened in the Windows Terminal.\u00a0<\/p>\n<p>This feature can be enabled by selecting the <strong>&#8220;Toggle broadcast input to all panes&#8221;<\/strong> option from the Command Palette <strong>(Ctrl + Shift + P)<\/strong>.<\/p>\n<h2>Web Search\u00a0<\/h2>\n<p>This update also adds a new entry in the right-click context menu to perform a web search on a selected text. When choosing the &#8220;Web Search&#8221; option, the default web browser will open with the result for the query.\u00a0<\/p>\n<p>The feature will perform a Bing search by default, but you can use the <code>\"searchWebDefaultQueryUrl\"<\/code> in the settings.json file to specify another search engine.\u00a0<\/p>\n<pre>\"searchWebDefaultQueryUrl\": \"https:\/\/www.google.com\/search?q=\"<\/pre>\n<p>According to the official notes, the new search 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. %s<\/code> will be replaced with your query.<\/p>\n<h2>Suggestions UI<\/h2>\n<p>The development team also revealed that this new version of the terminal can provide different types of text suggestions, including command history, saved commands, and more.<\/p>\n<p>If you want to use this feature, you will also need to enable the <a href=\"https:\/\/learn.microsoft.com\/en-us\/windows\/terminal\/tutorials\/shell-integration\" target=\"_blank\" rel=\"noopener\">Shell integration<\/a>. After setting up the required feature, to use &#8220;Command History&#8221; in the Suggestions UI, you&#8217;ll have to create a new <code>showSuggestions<\/code> action that will show the Suggestions UI with your command history as its suggestions source.<\/p>\n<pre>\"actions\": \r\n    [\r\n        {\r\n            \"command\": \r\n            {\r\n                \"action\": \"showSuggestions\",\r\n                \"source\": \"commandHistory\",\r\n                \"useCommandline\": true\r\n            },\r\n            \"keys\": \"ctrl+h\"\r\n        }\r\n    ],<\/pre>\n<p>To use &#8220;SendInput Actions&#8221; in the Suggestions UI to pull long commands with a single argument, you can\u00a0use <code>sendInput<\/code> actions as a suggestions source.\u00a0To enable the Suggestions UI to use your command history and your sendInput actions as a suggestions source, actions in your settings.json file should look like this.<\/p>\n<pre>{\r\n            \"command\": \r\n            {\r\n                \"action\": \"showSuggestions\",\r\n                \"source\": \"all\",\r\n                \"useCommandline\": true\r\n            },\r\n            \"keys\": \"ctrl+y\"\r\n        },<\/pre>\n<p>You can refer to the below example to add some <code>sendInput<\/code> actions to the Suggestions UI:<\/p>\n<pre>\"actions\": \r\n    [\r\n        {\r\n            \"command\": \r\n            {\r\n                \"action\": \"showSuggestions\",\r\n                \"source\": \"all\",\r\n                \"useCommandline\": true\r\n            },\r\n            \"keys\": \"ctrl+y\"\r\n        },\r\n        {\r\n            \"command\": \r\n            {\r\n                \"action\": \"sendInput\",\r\n                \"input\": \"git commit -m \\\"\\\"\\u001b[D\"\r\n            },\r\n            \"name\": \"commit\"\r\n        },\r\n        {\r\n            \"command\": \r\n            {\r\n                \"action\": \"sendInput\",\r\n                \"input\": \"git checkout -b\"\r\n            },\r\n            \"name\": \"new branch\"\r\n        },\r\n        {\r\n            \"command\": \r\n            {\r\n                \"action\": \"sendInput\",\r\n                \"input\": \"git fetch &amp; git pull\\r\"\r\n            },\r\n            \"name\": \"fetch&amp;pull\"\r\n        },\r\n        {\r\n            \"command\": \r\n            {\r\n                \"action\": \"sendInput\",\r\n                \"input\": \"git merge origin\/main\\r\"\r\n            },\r\n            \"name\": \"merge main\"\r\n        },\r\n        {\r\n            \"command\": \r\n            {\r\n                \"action\": \"sendInput\",\r\n                \"input\": \"git log -10 --pretty=oneline --abbrev-commit\\r\"\r\n            },\r\n            \"name\": \"log -10\"\r\n        }\r\n    ],<\/pre>\n<p>In the Windows Terminal, you can also use Suggestions UI on PowerShell 7 to surface suggestions from Predictors, but it requires modifying the PowerShell profile with a shell completion protocol and adding extra settings on the settings.json. You can <a href=\"https:\/\/github.com\/microsoft\/terminal\/wiki\/Experimental-Shell-Completion-Menu\" target=\"_blank\" rel=\"noopener\">refer to this guide<\/a> to set up this feature.<\/p>\n<h3>Other additions<\/h3>\n<p>The Windows Terminal 1.19 also includes support to input emojis on Command Prompt, and now, there&#8217;s support for unfocused acrylic, meaning that the application will appear with the acrylic effect when in the unfocused state instead of opaque.<\/p>\n<p>You can use the <code>\"opacity\"<\/code> and <code>\"useAcrylic\"<\/code> options to control the effect in the settings.json file.<\/p>\n<pre>\"opacity\": 85,\r\n\"useAcrylic\": true<\/pre>\n<p>Windows Terminal 1.19 is now available as a preview with the new features mentioned above and several bug fixes, and you can download it from the <a href=\"https:\/\/www.microsoft.com\/en-us\/p\/windows-terminal-preview\/9n8g5rfz9xk3?rtc=1&amp;activetab=pivot:overviewtab\" target=\"_blank\" rel=\"noopener nofollow\">Microsoft Store<\/a> or <a href=\"https:\/\/github.com\/microsoft\/terminal\" target=\"_blank\" rel=\"noopener\">GitHub<\/a>. If you are using the stable channel of the app, you can now update to version 1.18, which includes <a href=\"https:\/\/pureinfotech.com\/windows-terminal-1-17-menu-customization-mica\/\">all these improvements<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Windows Terminal app gets a bunch of new features, including Broadcast Input, Web Search, and Suggestions UI.<\/p>\n","protected":false},"author":2,"featured_media":159599,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"footnotes":""},"categories":[1758,10,23],"tags":[2540,2715,2666],"class_list":["post-159593","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-apps","category-news","category-windows","tag-windows-10","tag-windows-11","tag-windows-terminal"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Windows Terminal 1.19 outs with web search, broadcast, emoji support - Pureinfotech<\/title>\n<meta name=\"description\" content=\"Windows Terminal 1.119 rolls out as preview with Broadcast Input, Web Search, Suggestions UI, and more features.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Windows Terminal 1.19 outs with web search, broadcast, emoji support - Pureinfotech\" \/>\n<meta property=\"og:description\" content=\"Windows Terminal 1.119 rolls out as preview with Broadcast Input, Web Search, Suggestions UI, and more features.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/\" \/>\n<meta property=\"og:site_name\" content=\"Pureinfotech \u2022 Windows 10 &amp; Windows 11 help for humans\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/pureinfotech\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-27T14:25:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-27T14:26:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pureinfotech.com\/wp-content\/uploads\/2023\/09\/windows-terminal-1-19-hero.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1673\" \/>\n\t<meta property=\"og:image:height\" content=\"1064\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Mauro Huculak\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Pureinfotech\" \/>\n<meta name=\"twitter:site\" content=\"@Pureinfotech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mauro Huculak\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/\"},\"author\":{\"name\":\"Mauro Huculak\",\"@id\":\"https:\/\/pureinfotech.com\/#\/schema\/person\/bf4921a81eb4380865af70691a93af43\"},\"headline\":\"Windows Terminal 1.19 outs with web search, broadcast, emoji support\",\"datePublished\":\"2023-09-27T14:25:31+00:00\",\"dateModified\":\"2023-09-27T14:26:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/\"},\"wordCount\":564,\"publisher\":{\"@id\":\"https:\/\/pureinfotech.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/09\/windows-terminal-1-19-hero.webp?fit=1673%2C1064&quality=78&strip=all&ssl=1\",\"keywords\":[\"Windows 10\",\"Windows 11\",\"Windows Terminal\"],\"articleSection\":[\"Apps\",\"News\",\"Windows\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/\",\"url\":\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/\",\"name\":\"Windows Terminal 1.19 outs with web search, broadcast, emoji support - Pureinfotech\",\"isPartOf\":{\"@id\":\"https:\/\/pureinfotech.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/09\/windows-terminal-1-19-hero.webp?fit=1673%2C1064&quality=78&strip=all&ssl=1\",\"datePublished\":\"2023-09-27T14:25:31+00:00\",\"dateModified\":\"2023-09-27T14:26:02+00:00\",\"description\":\"Windows Terminal 1.119 rolls out as preview with Broadcast Input, Web Search, Suggestions UI, and more features.\",\"breadcrumb\":{\"@id\":\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/09\/windows-terminal-1-19-hero.webp?fit=1673%2C1064&quality=78&strip=all&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/09\/windows-terminal-1-19-hero.webp?fit=1673%2C1064&quality=78&strip=all&ssl=1\",\"width\":1673,\"height\":1064,\"caption\":\"Windows Terminal 1.19\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/pureinfotech.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Windows Terminal 1.19 outs with web search, broadcast, emoji support\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/pureinfotech.com\/#website\",\"url\":\"https:\/\/pureinfotech.com\/\",\"name\":\"Pureinfotech \u2022 Windows 10 &amp; Windows 11 help for humans\",\"description\":\"Pureinfotech is the best site to get Windows help \u2013 featuring friendly how-to guides on Windows 10, Windows 11, Xbox, and other things tech, news, deals, reviews, and more.\",\"publisher\":{\"@id\":\"https:\/\/pureinfotech.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/pureinfotech.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/pureinfotech.com\/#organization\",\"name\":\"Pureinfotech\",\"url\":\"https:\/\/pureinfotech.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/pureinfotech.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2019\/05\/pure-logo-v45.png?fit=192%2C192&quality=78&strip=all&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2019\/05\/pure-logo-v45.png?fit=192%2C192&quality=78&strip=all&ssl=1\",\"width\":192,\"height\":192,\"caption\":\"Pureinfotech\"},\"image\":{\"@id\":\"https:\/\/pureinfotech.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/pureinfotech\",\"https:\/\/x.com\/Pureinfotech\",\"https:\/\/www.youtube.com\/user\/Pureinfotech\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/pureinfotech.com\/#\/schema\/person\/bf4921a81eb4380865af70691a93af43\",\"name\":\"Mauro Huculak\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g\",\"caption\":\"Mauro Huculak\"},\"description\":\"Mauro Huculak is a Windows How-To Expert and founder of Pureinfotech (est. 2010). With over 21 years as a technology writer and IT Specialist, Mauro specializes in Windows, software, and cross-platform systems such as Linux, Android, and macOS. Certifications he holds include Microsoft Certified Solutions Associate (MCSA), Cisco Certified Network Professional (CCNP), VMware Certified Professional (VCP), and CompTIA A+ and Network+. Mauro is a recognized Microsoft MVP and has also been a long-time contributor to Windows Central. You can follow him on YouTube, Threads, BlueSky, X (Twitter), LinkedIn and About.me. Email him at Contact@Pureinfotech.com.\",\"sameAs\":[\"https:\/\/pureinfotech.com\",\"https:\/\/x.com\/@Pureinfotech\"],\"url\":\"https:\/\/pureinfotech.com\/mauro-huculak\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Windows Terminal 1.19 outs with web search, broadcast, emoji support - Pureinfotech","description":"Windows Terminal 1.119 rolls out as preview with Broadcast Input, Web Search, Suggestions UI, and more features.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/","og_locale":"en_US","og_type":"article","og_title":"Windows Terminal 1.19 outs with web search, broadcast, emoji support - Pureinfotech","og_description":"Windows Terminal 1.119 rolls out as preview with Broadcast Input, Web Search, Suggestions UI, and more features.","og_url":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/","og_site_name":"Pureinfotech \u2022 Windows 10 &amp; Windows 11 help for humans","article_publisher":"https:\/\/facebook.com\/pureinfotech","article_published_time":"2023-09-27T14:25:31+00:00","article_modified_time":"2023-09-27T14:26:02+00:00","og_image":[{"width":1673,"height":1064,"url":"https:\/\/pureinfotech.com\/wp-content\/uploads\/2023\/09\/windows-terminal-1-19-hero.webp","type":"image\/webp"}],"author":"Mauro Huculak","twitter_card":"summary_large_image","twitter_creator":"@Pureinfotech","twitter_site":"@Pureinfotech","twitter_misc":{"Written by":"Mauro Huculak","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#article","isPartOf":{"@id":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/"},"author":{"name":"Mauro Huculak","@id":"https:\/\/pureinfotech.com\/#\/schema\/person\/bf4921a81eb4380865af70691a93af43"},"headline":"Windows Terminal 1.19 outs with web search, broadcast, emoji support","datePublished":"2023-09-27T14:25:31+00:00","dateModified":"2023-09-27T14:26:02+00:00","mainEntityOfPage":{"@id":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/"},"wordCount":564,"publisher":{"@id":"https:\/\/pureinfotech.com\/#organization"},"image":{"@id":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/09\/windows-terminal-1-19-hero.webp?fit=1673%2C1064&quality=78&strip=all&ssl=1","keywords":["Windows 10","Windows 11","Windows Terminal"],"articleSection":["Apps","News","Windows"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/","url":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/","name":"Windows Terminal 1.19 outs with web search, broadcast, emoji support - Pureinfotech","isPartOf":{"@id":"https:\/\/pureinfotech.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#primaryimage"},"image":{"@id":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/09\/windows-terminal-1-19-hero.webp?fit=1673%2C1064&quality=78&strip=all&ssl=1","datePublished":"2023-09-27T14:25:31+00:00","dateModified":"2023-09-27T14:26:02+00:00","description":"Windows Terminal 1.119 rolls out as preview with Broadcast Input, Web Search, Suggestions UI, and more features.","breadcrumb":{"@id":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#primaryimage","url":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/09\/windows-terminal-1-19-hero.webp?fit=1673%2C1064&quality=78&strip=all&ssl=1","contentUrl":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/09\/windows-terminal-1-19-hero.webp?fit=1673%2C1064&quality=78&strip=all&ssl=1","width":1673,"height":1064,"caption":"Windows Terminal 1.19"},{"@type":"BreadcrumbList","@id":"https:\/\/pureinfotech.com\/windows-terminal-1-19-web-search-broadcast-emoji\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pureinfotech.com\/"},{"@type":"ListItem","position":2,"name":"Windows Terminal 1.19 outs with web search, broadcast, emoji support"}]},{"@type":"WebSite","@id":"https:\/\/pureinfotech.com\/#website","url":"https:\/\/pureinfotech.com\/","name":"Pureinfotech \u2022 Windows 10 &amp; Windows 11 help for humans","description":"Pureinfotech is the best site to get Windows help \u2013 featuring friendly how-to guides on Windows 10, Windows 11, Xbox, and other things tech, news, deals, reviews, and more.","publisher":{"@id":"https:\/\/pureinfotech.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pureinfotech.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pureinfotech.com\/#organization","name":"Pureinfotech","url":"https:\/\/pureinfotech.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pureinfotech.com\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2019\/05\/pure-logo-v45.png?fit=192%2C192&quality=78&strip=all&ssl=1","contentUrl":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2019\/05\/pure-logo-v45.png?fit=192%2C192&quality=78&strip=all&ssl=1","width":192,"height":192,"caption":"Pureinfotech"},"image":{"@id":"https:\/\/pureinfotech.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/pureinfotech","https:\/\/x.com\/Pureinfotech","https:\/\/www.youtube.com\/user\/Pureinfotech"]},{"@type":"Person","@id":"https:\/\/pureinfotech.com\/#\/schema\/person\/bf4921a81eb4380865af70691a93af43","name":"Mauro Huculak","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g","caption":"Mauro Huculak"},"description":"Mauro Huculak is a Windows How-To Expert and founder of Pureinfotech (est. 2010). With over 21 years as a technology writer and IT Specialist, Mauro specializes in Windows, software, and cross-platform systems such as Linux, Android, and macOS. Certifications he holds include Microsoft Certified Solutions Associate (MCSA), Cisco Certified Network Professional (CCNP), VMware Certified Professional (VCP), and CompTIA A+ and Network+. Mauro is a recognized Microsoft MVP and has also been a long-time contributor to Windows Central. You can follow him on YouTube, Threads, BlueSky, X (Twitter), LinkedIn and About.me. Email him at Contact@Pureinfotech.com.","sameAs":["https:\/\/pureinfotech.com","https:\/\/x.com\/@Pureinfotech"],"url":"https:\/\/pureinfotech.com\/mauro-huculak"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/09\/windows-terminal-1-19-hero.webp?fit=1673%2C1064&quality=78&strip=all&ssl=1","jetpack-related-posts":[{"id":156221,"url":"https:\/\/pureinfotech.com\/windows-terminal-1-18-outs-tab-tearout-portable-mode-ai\/","url_meta":{"origin":159593,"position":0},"title":"Windows Terminal 1.18 outs with tab tear out, portable mode, AI capabilities","author":"Mauro Huculak","date":"May 26, 2023","format":false,"excerpt":"The Windows Terminal app gets tab tear out, auto variable update, portable mode, and AI capabilities.","rel":"","context":"","block_context":{"text":"Apps","link":"https:\/\/pureinfotech.com\/category\/apps\/"},"img":{"alt_text":"Windows Terminal 1.18","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-terminal-1-18-tab-tearout-hero.webp?fit=1200%2C743&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-terminal-1-18-tab-tearout-hero.webp?fit=1200%2C743&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-terminal-1-18-tab-tearout-hero.webp?fit=1200%2C743&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-terminal-1-18-tab-tearout-hero.webp?fit=1200%2C743&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-terminal-1-18-tab-tearout-hero.webp?fit=1200%2C743&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":151643,"url":"https:\/\/pureinfotech.com\/windows-terminal-1-17-menu-customization-mica\/","url_meta":{"origin":159593,"position":1},"title":"Windows Terminal 1.17 outs with menu customization and mica support","author":"Mauro Huculak","date":"January 25, 2023","format":false,"excerpt":"A new preview of the Windows Terminal arrives with mica material support, menu customization, launch position option, and more.","rel":"","context":"","block_context":{"text":"Apps","link":"https:\/\/pureinfotech.com\/category\/apps\/"},"img":{"alt_text":"Windows Terminal 1.17","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-terminal-1-17-new-features-hero.webp?fit=1200%2C749&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-terminal-1-17-new-features-hero.webp?fit=1200%2C749&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-terminal-1-17-new-features-hero.webp?fit=1200%2C749&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-terminal-1-17-new-features-hero.webp?fit=1200%2C749&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-terminal-1-17-new-features-hero.webp?fit=1200%2C749&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":127974,"url":"https:\/\/pureinfotech.com\/windows-terminal-features-1-5\/","url_meta":{"origin":159593,"position":2},"title":"Windows Terminal gets new features with version 1.5","author":"Mauro Huculak","date":"November 12, 2020","format":false,"excerpt":"Microsoft releases new preview of the Windows Terminal with a bunch of new features and improvements \u2013 here all you need to know.","rel":"","context":"","block_context":{"text":"Apps","link":"https:\/\/pureinfotech.com\/category\/apps\/"},"img":{"alt_text":"Windows Terminal 1.5","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2020\/11\/windows-terminal-1-5-features_hero.jpg?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2020\/11\/windows-terminal-1-5-features_hero.jpg?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2020\/11\/windows-terminal-1-5-features_hero.jpg?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2020\/11\/windows-terminal-1-5-features_hero.jpg?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2020\/11\/windows-terminal-1-5-features_hero.jpg?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":145152,"url":"https:\/\/pureinfotech.com\/windows-terminal-1-15-new-features\/","url_meta":{"origin":159593,"position":3},"title":"Windows Terminal 1.15 outs with new features","author":"Mauro Huculak","date":"July 8, 2022","format":false,"excerpt":"A new preview of the Windows Terminal arrives with a couple of new features, improvements, and fixes.","rel":"","context":"","block_context":{"text":"Apps","link":"https:\/\/pureinfotech.com\/category\/apps\/"},"img":{"alt_text":"Windows Terminal 1.15","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/07\/windows-termina-1-15-preview-hero.webp?fit=1200%2C751&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/07\/windows-termina-1-15-preview-hero.webp?fit=1200%2C751&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/07\/windows-termina-1-15-preview-hero.webp?fit=1200%2C751&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/07\/windows-termina-1-15-preview-hero.webp?fit=1200%2C751&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/07\/windows-termina-1-15-preview-hero.webp?fit=1200%2C751&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":130397,"url":"https:\/\/pureinfotech.com\/windows-terminal-features-1-7\/","url_meta":{"origin":159593,"position":4},"title":"Windows Terminal gets new features with version 1.7","author":"Mauro Huculak","date":"March 2, 2021","format":false,"excerpt":"A new version of the Windows Terminal app becomes available as a preview with new features and improvements \u2013 here's all you need to know.","rel":"","context":"","block_context":{"text":"Apps","link":"https:\/\/pureinfotech.com\/category\/apps\/"},"img":{"alt_text":"Windows Terminal 1.7","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2021\/03\/windows-terminal-1-7-features_hero.jpg?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2021\/03\/windows-terminal-1-7-features_hero.jpg?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2021\/03\/windows-terminal-1-7-features_hero.jpg?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2021\/03\/windows-terminal-1-7-features_hero.jpg?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2021\/03\/windows-terminal-1-7-features_hero.jpg?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":147595,"url":"https:\/\/pureinfotech.com\/windows-terminal-1-16-color-themes\/","url_meta":{"origin":159593,"position":5},"title":"Windows Terminal 1.16 outs new color themes feature","author":"Mauro Huculak","date":"September 14, 2022","format":false,"excerpt":"A new preview of the Windows Terminal arrives with support for colorful themes and other changes.","rel":"","context":"","block_context":{"text":"Apps","link":"https:\/\/pureinfotech.com\/category\/apps\/"},"img":{"alt_text":"Windows Terminal 1.16","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/09\/terminal-116-themes.webp?fit=1200%2C800&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/09\/terminal-116-themes.webp?fit=1200%2C800&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/09\/terminal-116-themes.webp?fit=1200%2C800&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/09\/terminal-116-themes.webp?fit=1200%2C800&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/09\/terminal-116-themes.webp?fit=1200%2C800&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]}],"_links":{"self":[{"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/posts\/159593","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/comments?post=159593"}],"version-history":[{"count":0,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/posts\/159593\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/media\/159599"}],"wp:attachment":[{"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/media?parent=159593"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/categories?post=159593"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/tags?post=159593"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}