{"id":6068,"date":"2020-08-26T10:09:51","date_gmt":"2020-08-26T17:09:51","guid":{"rendered":"https:\/\/devblogs.microsoft.com\/commandline\/?p=6068"},"modified":"2020-08-27T09:55:01","modified_gmt":"2020-08-27T16:55:01","slug":"windows-terminal-preview-1-3-release","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/commandline\/windows-terminal-preview-1-3-release\/","title":{"rendered":"Windows Terminal Preview 1.3 Release"},"content":{"rendered":"<p>We are back with another release for <a href=\"https:\/\/aka.ms\/terminal\" rel=\"noopener noreferrer\" target=\"_blank\">Windows Terminal<\/a> and <a href=\"https:\/\/aka.ms\/terminal-preview\" rel=\"noopener noreferrer\" target=\"_blank\">Windows Terminal Preview<\/a>! This release adds all of the <a href=\"https:\/\/devblogs.microsoft.com\/commandline\/windows-terminal-preview-1-2-release\/\" rel=\"noopener noreferrer\" target=\"_blank\">1.2 features<\/a> into Windows Terminal and introduces new features described below for Windows Terminal Preview 1.3. Both builds of Windows Terminal can be installed from the Microsoft Store or from the <a href=\"https:\/\/github.com\/microsoft\/terminal\/releases\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub releases page<\/a>. Let&#8217;s check out what&#8217;s new this month!<\/p>\n<h2>Command palette<\/h2>\n<p>The command palette is finally here! This new feature allows you to search through all of the commands available to you in Windows Terminal, similar to the one found in Visual Studio Code. You can invoke the command palette by typing <code>Ctrl+Shift+P<\/code>. If you&#8217;d like to change this key binding, you can add the <code>commandPalette<\/code> command to the <code>keybindings<\/code> array in your settings.json.<\/p>\n<pre><code>{ \"command\": \"commandPalette\", \"keys\": \"ctrl+shift+p\" }\n<\/code><\/pre>\n<p>The command palette has two modes: action mode and command line mode. Action mode is the mode you will enter by default and will list all of your Windows Terminal commands. Command line mode can be entered by typing <code>&gt;<\/code> and you can then enter any <code>wt<\/code> command, which will be invoked on the current window.<\/p>\n<p>You can also customize actions you&#8217;d like to add to the command palette by adding commands to your settings.json file. Your key bindings should automatically populate the command palette. Full documentation on how to add your own commands can be found on our <a href=\"https:\/\/docs.microsoft.com\/windows\/terminal\/command-palette\" rel=\"noopener noreferrer\" target=\"_blank\">docs site<\/a>.<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/command-palette-blog.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/command-palette-blog.gif\" alt=\"Image command palette blog\" width=\"1725\" height=\"1034\" class=\"alignnone size-full wp-image-6078\" \/><\/a><\/p>\n<h2>Advanced tab switcher<\/h2>\n<p>We have added an advanced tab switcher to help you navigate more easily between your tabs. This is enabled by default with the <code>useTabSwitcher<\/code> global setting. When enabled, the <code>nextTab<\/code> and <code>prevTab<\/code> commands will use the tab switcher. By default, these keyboard shortcuts are <code>Ctrl+Tab<\/code> and <code>Ctrl+Shift+Tab<\/code>, respectively.<\/p>\n<pre><code>\"useTabSwitcher\": true\n<\/code><\/pre>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/tab-switcher.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/tab-switcher.gif\" alt=\"Image tab switcher\" width=\"1726\" height=\"1034\" class=\"alignnone size-full wp-image-6069\" \/><\/a><\/p>\n<h2>Tab color setting<\/h2>\n<p>You can now specify a tab color for each profile! This can be done by adding the <code>tabColor<\/code> setting to a profile and setting it to a color in hex format.<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/tab-color-1.png\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/tab-color-1.png\" alt=\"Image tab color\" width=\"1730\" height=\"1040\" class=\"alignnone size-full wp-image-6072\" srcset=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/tab-color-1.png 1730w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/tab-color-1-300x180.png 300w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/tab-color-1-1024x616.png 1024w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/tab-color-1-768x462.png 768w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/tab-color-1-1536x923.png 1536w\" sizes=\"(max-width: 1730px) 100vw, 1730px\" \/><\/a><\/p>\n<p>\ud83d\udca1 <strong>TIP:<\/strong> Set your tab color to the same color as your background for a seamless experience!<\/p>\n<h2>New commands<\/h2>\n<p>We have added some new commands that you can add to your key bindings in your settings.json file. None of the following commands are bound by default.<\/p>\n<h3><code>wt<\/code> commands as a key binding<\/h3>\n<p>We have added the ability to execute wt.exe command line arguments with key bindings. This can be done with the <code>wt<\/code> command. The <code>commandline<\/code> property defines the command line arguments you would like to invoke on the current window. More information on <code>wt<\/code> command line arguments can be found on our <a href=\"https:\/\/docs.microsoft.com\/windows\/terminal\/command-line-arguments?tabs=windows\" rel=\"noopener noreferrer\" target=\"_blank\">docs site<\/a>.<\/p>\n<pre><code>\/\/ This command opens a new tab with PowerShell in a pane, a vertical pane running  the Command Prompt profile in the C:\\ directory, and a horizontal pane running the Ubuntu profile.\n{ \"command\": { \"action\": \"wt\", \"commandline\": \"new-tab pwsh.exe ; split-pane -p \\\"Command Prompt\\\" -d C:\\\\ ; split-pane -p \\\"Ubuntu\\\" -H\" }, \"keys\": \"ctrl+a\" }\n<\/code><\/pre>\n<h3>Send input to the shell<\/h3>\n<p>If you want to send input to the shell by using a keyboard shortcut, you can do so with the <code>sendInput<\/code> command. (Thanks <a href=\"https:\/\/github.com\/lhecker\" rel=\"noopener noreferrer\" target=\"_blank\">@lhecker<\/a>!)<\/p>\n<pre><code>\/\/ This command navigates backwards through the shell history.\n{ \"command\": { \"action\": \"sendInput\", \"input\": \"\\u001b[A\" }, \"keys\": \"ctrl+b\" }\n<\/code><\/pre>\n<h3>Tab search<\/h3>\n<p>If you are someone who has a lot of tabs open (like myself), this new command is a life saver. You can now search through your tabs in a new search box using the <code>tabSearch<\/code> command.<\/p>\n<pre><code>{ \"command\": \"tabSearch\", \"keys\": \"ctrl+c\" }\n<\/code><\/pre>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/tab-search.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/tab-search.gif\" alt=\"Image tab search\" width=\"1726\" height=\"1034\" class=\"alignnone size-full wp-image-6074\" \/><\/a><\/p>\n<h3>Change color scheme<\/h3>\n<p>You can set the color scheme of the active window by using the <code>setColorScheme<\/code> command.<\/p>\n<pre><code>{ \"command\": { \"action\": \"setColorScheme\", \"colorScheme\": \"Campbell\" }, \"keys\": \"ctrl+d\" }\n<\/code><\/pre>\n<h2>Bug fixes<\/h2>\n<p>\ud83d\udc1b You can now specify which types of formats you would like to copy.<\/p>\n<p>\ud83d\udc1b Profiles whose indices are greater than 9 will now properly display their shortcuts in the dropdown. (Thanks <a href=\"https:\/\/github.com\/MichelleTanPY\" rel=\"noopener noreferrer\" target=\"_blank\">@MichelleTanPY<\/a>!)<\/p>\n<p>\ud83d\udc1b <code>altGrAliasing: false<\/code> will no longer break <kbd>AltGr<\/kbd><\/p>\n<h2>Top contributors<\/h2>\n<p>We had a lot of wonderful contributions this month and we&#8217;d like to recognize those who especially made an impact!<\/p>\n<h3>Contributors who opened the most non-duplicate issues<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/KalleOlaviNiemitalo\" rel=\"noopener noreferrer\" target=\"_blank\">KalleOlaviNiemitalo<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/skyline75489\" rel=\"noopener noreferrer\" target=\"_blank\">skyline75489<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/Fcscanf\" rel=\"noopener noreferrer\" target=\"_blank\">Fcscanf<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/pcgeek86\" rel=\"noopener noreferrer\" target=\"_blank\">pcgeek86<\/a><\/p>\n<h3>Contributors who created the most merged pull requests<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/j4james\" rel=\"noopener noreferrer\" target=\"_blank\">j4james<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/MichelleTanPY\" rel=\"noopener noreferrer\" target=\"_blank\">MichelleTanPY<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/javierdlg\" rel=\"noopener noreferrer\" target=\"_blank\">javierdlg<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/lhecker\" rel=\"noopener noreferrer\" target=\"_blank\">lhecker<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/schorrm\" rel=\"noopener noreferrer\" target=\"_blank\">schorrm<\/a><\/p>\n<h3>Contributors who provided the most comments on pull requests<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/mrange\" rel=\"noopener noreferrer\" target=\"_blank\">mrange<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/j4james\" rel=\"noopener noreferrer\" target=\"_blank\">j4james<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/schorrm\" rel=\"noopener noreferrer\" target=\"_blank\">schorrm<\/a><\/p>\n<h2>Until next time<\/h2>\n<p>We hope you like these latest additions to <a href=\"https:\/\/aka.ms\/terminal-preview\" rel=\"noopener noreferrer\" target=\"_blank\">Windows Terminal Preview<\/a>! All of our documentation can be found at <a href=\"https:\/\/aka.ms\/terminal-docs\" rel=\"noopener noreferrer\" target=\"_blank\">docs.microsoft.com<\/a>. If you have any questions or feedback, feel free to reach out to Kayla (<a href=\"https:\/\/twitter.com\/cinnamon_msft\" rel=\"noopener noreferrer\" target=\"_blank\">@cinnamon_msft<\/a>) on Twitter. If you find any bugs or would like to request a new feature, you can file a new issue on <a href=\"https:\/\/github.com\/microsoft\/terminal\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub<\/a>. We will see you in September for our next release!<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/08-2020-signatures.png\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/08-2020-signatures.png\" alt=\"Image 08 2020 signatures\" width=\"2006\" height=\"259\" class=\"alignnone size-full wp-image-6075\" srcset=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/08-2020-signatures.png 2006w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/08-2020-signatures-300x39.png 300w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/08-2020-signatures-1024x132.png 1024w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/08-2020-signatures-768x99.png 768w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2020\/08\/08-2020-signatures-1536x198.png 1536w\" sizes=\"(max-width: 2006px) 100vw, 2006px\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>We are back with another release for Windows Terminal and Windows Terminal Preview! This release adds all of the 1.2 features into Windows Terminal and introduces new features described below for Windows Terminal Preview 1.3. Both builds of Windows Terminal can be installed from the Microsoft Store or from the GitHub releases page. Let&#8217;s check [&hellip;]<\/p>\n","protected":false},"author":3539,"featured_media":6080,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[10,1,2,3,4,1535,5,6,8,9,782],"tags":[22,27,29,31,42,43,45,48,59,69,70,72],"class_list":["post-6068","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cmd","category-commandline","category-command-line","category-linux-tools","category-ms-dos","category-open-source","category-windows-10","category-windows-console","category-windows-store","category-bash-on-ubuntu-on-windows","category-windows-terminal","tag-bash","tag-cmd","tag-command-line","tag-console","tag-linux","tag-linuxtools","tag-ms-dos","tag-powershell","tag-terminal","tag-windows","tag-windows-10","tag-wsl"],"acf":[],"blog_post_summary":"<p>We are back with another release for Windows Terminal and Windows Terminal Preview! This release adds all of the 1.2 features into Windows Terminal and introduces new features described below for Windows Terminal Preview 1.3. Both builds of Windows Terminal can be installed from the Microsoft Store or from the GitHub releases page. Let&#8217;s check [&hellip;]<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/posts\/6068","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\/3539"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/comments?post=6068"}],"version-history":[{"count":0,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/posts\/6068\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/media\/6080"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/media?parent=6068"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/categories?post=6068"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/tags?post=6068"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}