From e49190f025d9aba3b6c5729d36c7a3c1a7762736 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Wed, 1 Apr 2020 17:56:35 -0700 Subject: [PATCH 01/12] add settings for discoverability --- src/cascadia/TerminalApp/userDefaults.json | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index e5b325a1d86..c274b3a4fea 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -6,6 +6,9 @@ "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", + // If enabled, selections are automatically copied to your clipboard + "copyOnSelect": false, + "profiles": { "defaults": @@ -36,5 +39,16 @@ // Add any keybinding overrides to this array. // To unbind a default keybinding, set the command to "unbound" - "keybindings": [] + "keybindings": [ + + // Press Ctrl+Shift+F to open the search box + // To learn more about search, visit https://aka.ms/terminal-documentation + { "command": "find", "keys": "ctrl+shift+f"}, + + // Press Alt+Shift+D to open a new pane + // - "split": "auto" makes this pane open in the direction that provides the most surface area + // - "splitMode": "duplicate" makes this pane a duplicate of the focused pane's profile + // To learn more about panes, visit https://aka.ms/terminal-documentation + { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } + ] } From 3a07226bfe81ccdde4eb16b66f7e17d68bf36092 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Wed, 1 Apr 2020 18:11:27 -0700 Subject: [PATCH 02/12] add copy/pasta note --- src/cascadia/TerminalApp/userDefaults.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index c274b3a4fea..013850a3b9e 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -41,6 +41,12 @@ // To unbind a default keybinding, set the command to "unbound" "keybindings": [ + // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json + // These bindings additionally bind them to Ctrl+C and Ctrl+V + // To learn more about selection, visit https://aka.ms/terminal-documentation + { "command": "copy", "keys": "ctrl+c" }, + { "command": "paste", "keys": "ctrl+v" } + // Press Ctrl+Shift+F to open the search box // To learn more about search, visit https://aka.ms/terminal-documentation { "command": "find", "keys": "ctrl+shift+f"}, From 7b953d659eec43aa11fc1aa9e5c0ac2e07d139ee Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Wed, 1 Apr 2020 18:16:56 -0700 Subject: [PATCH 03/12] add doc link for global settings --- src/cascadia/TerminalApp/userDefaults.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index 013850a3b9e..c57c233c672 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -7,6 +7,7 @@ "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", // If enabled, selections are automatically copied to your clipboard + // To learn more about global settings, visit https://aka.ms/terminal-documentation "copyOnSelect": false, "profiles": From f33abce8936fb9eb6323cf2028491feba281ecc1 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Thu, 2 Apr 2020 10:15:48 -0700 Subject: [PATCH 04/12] cook some updates with cinnamon --- src/cascadia/TerminalApp/userDefaults.json | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index c57c233c672..f64b9d7d05e 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -7,9 +7,11 @@ "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", // If enabled, selections are automatically copied to your clipboard - // To learn more about global settings, visit https://aka.ms/terminal-documentation + // To learn more about global settings, visit https://aka.ms/terminal-global-settings "copyOnSelect": false, + // Profiles are the list of command line executables in your dropdown + // To learn more about profiles, visit https://aka.ms/terminal-profile-settings "profiles": { "defaults": @@ -36,26 +38,28 @@ }, // Add custom color schemes to this array + // To learn more about color schemes, visit https://aka.ms/terminal-color-schemes "schemes": [], - // Add any keybinding overrides to this array. - // To unbind a default keybinding, set the command to "unbound" + // Add custom keybindings to this array + // To unbind a key combination from your defaults.json, set the command to "unbound" + // To learn more about keybindings, visit https://aka.ms/terminal-keybindings "keybindings": [ // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json // These bindings additionally bind them to Ctrl+C and Ctrl+V - // To learn more about selection, visit https://aka.ms/terminal-documentation + // To learn more about selection, visit https://aka.ms/terminal-selection { "command": "copy", "keys": "ctrl+c" }, { "command": "paste", "keys": "ctrl+v" } // Press Ctrl+Shift+F to open the search box - // To learn more about search, visit https://aka.ms/terminal-documentation + // To learn more about selection, visit https://aka.ms/terminal-search { "command": "find", "keys": "ctrl+shift+f"}, // Press Alt+Shift+D to open a new pane // - "split": "auto" makes this pane open in the direction that provides the most surface area // - "splitMode": "duplicate" makes this pane a duplicate of the focused pane's profile - // To learn more about panes, visit https://aka.ms/terminal-documentation + // To learn more about selection, visit https://aka.ms/terminal-panes { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } ] } From 0cdb80f8a77260053a9968817e079a2086af4539 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Fri, 3 Apr 2020 11:54:15 -0700 Subject: [PATCH 05/12] add more comments! --- src/cascadia/TerminalApp/userDefaults.json | 110 +++++++++++---------- 1 file changed, 58 insertions(+), 52 deletions(-) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index f64b9d7d05e..240268829c9 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -1,65 +1,71 @@ +// This file was stamped by Windows Terminal. +// It should still be usable in newer versions, but newer versions might have additional +// settings, help text, or changes that you will not see unless you clear this file +// and let us generate a new one for you. + // To view the default settings, hold "alt" while clicking on the "Settings" button. // For documentation on these settings, see: https://aka.ms/terminal-documentation - { - "$schema": "https://aka.ms/terminal-profiles-schema", + "$schema": "https://aka.ms/terminal-profiles-schema", + + "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", - "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", + // You can add more global application settings up here! + // To learn more about global settings, visit https://aka.ms/terminal-global-settings - // If enabled, selections are automatically copied to your clipboard - // To learn more about global settings, visit https://aka.ms/terminal-global-settings - "copyOnSelect": false, + // If enabled, selections are automatically copied to your clipboard + "copyOnSelect": false, - // Profiles are the list of command line executables in your dropdown - // To learn more about profiles, visit https://aka.ms/terminal-profile-settings - "profiles": + // Profiles are listed in your dropdown and they include the command line executable along with customizations + // To learn more about profiles, visit https://aka.ms/terminal-profile-settings + "profiles": + { + "defaults": { - "defaults": - { - // Put settings here that you want to apply to all profiles - }, - "list": - [ - { - // Make changes here to the powershell.exe profile - "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", - "name": "Windows PowerShell", - "commandline": "powershell.exe", - "hidden": false - }, - { - // Make changes here to the cmd.exe profile - "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", - "name": "cmd", - "commandline": "cmd.exe", - "hidden": false - } - ] + // Put settings here that you want to apply to all profiles }, + "list": + [ + { + // Make changes here to the powershell.exe profile + "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", + "name": "Windows PowerShell", + "commandline": "powershell.exe", + "hidden": false + }, + { + // Make changes here to the cmd.exe profile + "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", + "name": "cmd", + "commandline": "cmd.exe", + "hidden": false + } + ] + }, - // Add custom color schemes to this array - // To learn more about color schemes, visit https://aka.ms/terminal-color-schemes - "schemes": [], - - // Add custom keybindings to this array - // To unbind a key combination from your defaults.json, set the command to "unbound" - // To learn more about keybindings, visit https://aka.ms/terminal-keybindings - "keybindings": [ + // Add custom color schemes to this array + // To learn more about color schemes, visit https://aka.ms/terminal-color-schemes + "schemes": [], - // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json - // These bindings additionally bind them to Ctrl+C and Ctrl+V - // To learn more about selection, visit https://aka.ms/terminal-selection - { "command": "copy", "keys": "ctrl+c" }, - { "command": "paste", "keys": "ctrl+v" } + // Add custom keybindings to this array + // To unbind a key combination from your defaults.json, set the command to "unbound" + // To learn more about keybindings, visit https://aka.ms/terminal-keybindings + "keybindings": + [ + // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json + // These bindings additionally bind them to Ctrl+C and Ctrl+V + // To learn more about selection, visit https://aka.ms/terminal-selection + { "command": "copy", "keys": "ctrl+c" }, + { "command": "paste", "keys": "ctrl+v" }, - // Press Ctrl+Shift+F to open the search box - // To learn more about selection, visit https://aka.ms/terminal-search - { "command": "find", "keys": "ctrl+shift+f"}, + // Press Ctrl+Shift+F to open the search box + // To learn more about selection, visit https://aka.ms/terminal-search + { "command": "find", "keys": "ctrl+shift+f"}, - // Press Alt+Shift+D to open a new pane - // - "split": "auto" makes this pane open in the direction that provides the most surface area - // - "splitMode": "duplicate" makes this pane a duplicate of the focused pane's profile - // To learn more about selection, visit https://aka.ms/terminal-panes - { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } - ] + // Press Alt+Shift+D to open a new pane + // - "split": "auto" makes this pane open in the direction that provides the most surface area + // - "splitMode": "duplicate" makes this pane a duplicate of the focused pane's profile + // To learn more about selection, visit https://aka.ms/terminal-panes + { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } + ] } From 9a8dccaa0e7e71df05ea8bdddd448972f3fd1d58 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Fri, 3 Apr 2020 12:02:34 -0700 Subject: [PATCH 06/12] indent = 4 spaces --- src/cascadia/TerminalApp/userDefaults.json | 104 ++++++++++----------- 1 file changed, 52 insertions(+), 52 deletions(-) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index 240268829c9..f4c0547a6c1 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -6,66 +6,66 @@ // To view the default settings, hold "alt" while clicking on the "Settings" button. // For documentation on these settings, see: https://aka.ms/terminal-documentation { - "$schema": "https://aka.ms/terminal-profiles-schema", + "$schema": "https://aka.ms/terminal-profiles-schema", - "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", + "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", - // You can add more global application settings up here! - // To learn more about global settings, visit https://aka.ms/terminal-global-settings + // You can add more global application settings up here! + // To learn more about global settings, visit https://aka.ms/terminal-global-settings - // If enabled, selections are automatically copied to your clipboard - "copyOnSelect": false, + // If enabled, selections are automatically copied to your clipboard + "copyOnSelect": false, - // Profiles are listed in your dropdown and they include the command line executable along with customizations - // To learn more about profiles, visit https://aka.ms/terminal-profile-settings - "profiles": - { - "defaults": + // Profiles are listed in your dropdown and they include the command line executable along with customizations + // To learn more about profiles, visit https://aka.ms/terminal-profile-settings + "profiles": { - // Put settings here that you want to apply to all profiles + "defaults": + { + // Put settings here that you want to apply to all profiles + }, + "list": + [ + { + // Make changes here to the powershell.exe profile + "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", + "name": "Windows PowerShell", + "commandline": "powershell.exe", + "hidden": false + }, + { + // Make changes here to the cmd.exe profile + "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", + "name": "cmd", + "commandline": "cmd.exe", + "hidden": false + } + ] }, - "list": - [ - { - // Make changes here to the powershell.exe profile - "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", - "name": "Windows PowerShell", - "commandline": "powershell.exe", - "hidden": false - }, - { - // Make changes here to the cmd.exe profile - "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", - "name": "cmd", - "commandline": "cmd.exe", - "hidden": false - } - ] - }, - // Add custom color schemes to this array - // To learn more about color schemes, visit https://aka.ms/terminal-color-schemes - "schemes": [], + // Add custom color schemes to this array + // To learn more about color schemes, visit https://aka.ms/terminal-color-schemes + "schemes": [], - // Add custom keybindings to this array - // To unbind a key combination from your defaults.json, set the command to "unbound" - // To learn more about keybindings, visit https://aka.ms/terminal-keybindings - "keybindings": - [ - // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json - // These bindings additionally bind them to Ctrl+C and Ctrl+V - // To learn more about selection, visit https://aka.ms/terminal-selection - { "command": "copy", "keys": "ctrl+c" }, - { "command": "paste", "keys": "ctrl+v" }, + // Add custom keybindings to this array + // To unbind a key combination from your defaults.json, set the command to "unbound" + // To learn more about keybindings, visit https://aka.ms/terminal-keybindings + "keybindings": + [ + // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json + // These bindings additionally bind them to Ctrl+C and Ctrl+V + // To learn more about selection, visit https://aka.ms/terminal-selection + { "command": "copy", "keys": "ctrl+c" }, + { "command": "paste", "keys": "ctrl+v" }, - // Press Ctrl+Shift+F to open the search box - // To learn more about selection, visit https://aka.ms/terminal-search - { "command": "find", "keys": "ctrl+shift+f"}, + // Press Ctrl+Shift+F to open the search box + // To learn more about selection, visit https://aka.ms/terminal-search + { "command": "find", "keys": "ctrl+shift+f"}, - // Press Alt+Shift+D to open a new pane - // - "split": "auto" makes this pane open in the direction that provides the most surface area - // - "splitMode": "duplicate" makes this pane a duplicate of the focused pane's profile - // To learn more about selection, visit https://aka.ms/terminal-panes - { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } - ] + // Press Alt+Shift+D to open a new pane + // - "split": "auto" makes this pane open in the direction that provides the most surface area + // - "splitMode": "duplicate" makes this pane a duplicate of the focused pane's profile + // To learn more about selection, visit https://aka.ms/terminal-panes + { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } + ] } From 7a4d9994177f3b136bbc3799d19176d25cb39d29 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Fri, 3 Apr 2020 12:06:07 -0700 Subject: [PATCH 07/12] remove disclaimer --- src/cascadia/TerminalApp/userDefaults.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index f4c0547a6c1..feb710d5097 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -1,8 +1,3 @@ -// This file was stamped by Windows Terminal. -// It should still be usable in newer versions, but newer versions might have additional -// settings, help text, or changes that you will not see unless you clear this file -// and let us generate a new one for you. - // To view the default settings, hold "alt" while clicking on the "Settings" button. // For documentation on these settings, see: https://aka.ms/terminal-documentation { From d532b4e1bf197b79f269d3d7296c9620767d7dc5 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Fri, 3 Apr 2020 13:03:02 -0700 Subject: [PATCH 08/12] Dev-ing with Dustin --- src/cascadia/TerminalApp/userDefaults.json | 38 +++++++++++++--------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index feb710d5097..d82f8fb6382 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -1,3 +1,8 @@ +// This file was stamped by %PRODUCT% %VERSION% +// It should still be usable in newer versions, but newer versions might have additional +// settings, help text, or changes that you will not see unless you clear this file +// and let us generate a new one for you. + // To view the default settings, hold "alt" while clicking on the "Settings" button. // For documentation on these settings, see: https://aka.ms/terminal-documentation { @@ -5,31 +10,33 @@ "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", - // You can add more global application settings up here! + // You can add more global application settings here. // To learn more about global settings, visit https://aka.ms/terminal-global-settings - // If enabled, selections are automatically copied to your clipboard + // If enabled, selections are automatically copied to your clipboard. "copyOnSelect": false, - // Profiles are listed in your dropdown and they include the command line executable along with customizations + // A profile specifies a command to execute paired with information about how it should look and feel. + // Each one of then will appear in the 'New Tab' dropdown, + // and can be invoked from the commandline with `wt.exe -p xxx` // To learn more about profiles, visit https://aka.ms/terminal-profile-settings "profiles": { "defaults": { - // Put settings here that you want to apply to all profiles + // Put settings here that you want to apply to all profiles. }, "list": [ { - // Make changes here to the powershell.exe profile + // Make changes here to the powershell.exe profile. "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", "name": "Windows PowerShell", "commandline": "powershell.exe", "hidden": false }, { - // Make changes here to the cmd.exe profile + // Make changes here to the cmd.exe profile. "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "name": "cmd", "commandline": "cmd.exe", @@ -38,29 +45,28 @@ ] }, - // Add custom color schemes to this array + // Add custom color schemes to this array. // To learn more about color schemes, visit https://aka.ms/terminal-color-schemes "schemes": [], - // Add custom keybindings to this array - // To unbind a key combination from your defaults.json, set the command to "unbound" + // Add custom keybindings to this array. + // To unbind a key combination from your defaults.json, set the command to "unbound". // To learn more about keybindings, visit https://aka.ms/terminal-keybindings "keybindings": [ - // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json - // These bindings additionally bind them to Ctrl+C and Ctrl+V + // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json. + // These two lines additionally bind them to Ctrl+C and Ctrl+V. // To learn more about selection, visit https://aka.ms/terminal-selection { "command": "copy", "keys": "ctrl+c" }, { "command": "paste", "keys": "ctrl+v" }, // Press Ctrl+Shift+F to open the search box - // To learn more about selection, visit https://aka.ms/terminal-search { "command": "find", "keys": "ctrl+shift+f"}, - // Press Alt+Shift+D to open a new pane - // - "split": "auto" makes this pane open in the direction that provides the most surface area - // - "splitMode": "duplicate" makes this pane a duplicate of the focused pane's profile - // To learn more about selection, visit https://aka.ms/terminal-panes + // Press Alt+Shift+D to open a new pane. + // - "split": "auto" makes this pane open in the direction that provides the most surface area. + // - "splitMode": "duplicate" makes this pane a duplicate of the focused pane's profile. + // To learn more about panes, visit https://aka.ms/terminal-panes { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } ] } From 3942cac78fd2e2503094f17c5f677b835d33b0dd Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Fri, 3 Apr 2020 14:01:59 -0700 Subject: [PATCH 09/12] Take Dustin's commit and claim it as my own Co-Authored-By: Dustin L. Howett (MSFT) --- src/cascadia/TerminalApp/userDefaults.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index d82f8fb6382..8c38d89aeca 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -1,4 +1,4 @@ -// This file was stamped by %PRODUCT% %VERSION% +// This file was initially generated by %PRODUCT% %VERSION% // It should still be usable in newer versions, but newer versions might have additional // settings, help text, or changes that you will not see unless you clear this file // and let us generate a new one for you. From b125e252570599fe06cf24d7981afa3722387fe6 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Wed, 8 Apr 2020 10:05:45 -0700 Subject: [PATCH 10/12] Leon's comments --- src/cascadia/TerminalApp/userDefaults.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index 8d7b8372af0..7f01b1529ac 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -17,7 +17,7 @@ "copyOnSelect": false, // A profile specifies a command to execute paired with information about how it should look and feel. - // Each one of then will appear in the 'New Tab' dropdown, + // Each one of them will appear in the 'New Tab' dropdown, // and can be invoked from the commandline with `wt.exe -p xxx` // To learn more about profiles, visit https://aka.ms/terminal-profile-settings "profiles": @@ -65,7 +65,7 @@ // Press Alt+Shift+D to open a new pane. // - "split": "auto" makes this pane open in the direction that provides the most surface area. - // - "splitMode": "duplicate" makes this pane a duplicate of the focused pane's profile. + // - "splitMode": "duplicate" makes the new pane use the focused pane's profile. // To learn more about panes, visit https://aka.ms/terminal-panes { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+shift+d" } ] From eeeb052e670c9a58bc1e1274dc12f8b576dfaaa0 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Thu, 9 Apr 2020 10:16:34 -0700 Subject: [PATCH 11/12] add "singleLine" to copy --- src/cascadia/TerminalApp/userDefaults.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index 7f01b1529ac..e7cf10dbbc0 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -57,7 +57,7 @@ // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json. // These two lines additionally bind them to Ctrl+C and Ctrl+V. // To learn more about selection, visit https://aka.ms/terminal-selection - { "command": "copy", "keys": "ctrl+c" }, + { "command": {"action": "copy", "singleLine": false }, "keys": "ctrl+c" }, { "command": "paste", "keys": "ctrl+v" }, // Press Ctrl+Shift+F to open the search box From 48011f6d4e3a4f51852796abd4ba36bab56feaf0 Mon Sep 17 00:00:00 2001 From: Carlos Zamora Date: Thu, 9 Apr 2020 15:00:50 -0700 Subject: [PATCH 12/12] Add missing space Co-Authored-By: Dustin L. Howett (MSFT) --- src/cascadia/TerminalApp/userDefaults.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cascadia/TerminalApp/userDefaults.json b/src/cascadia/TerminalApp/userDefaults.json index e7cf10dbbc0..24319ce3706 100644 --- a/src/cascadia/TerminalApp/userDefaults.json +++ b/src/cascadia/TerminalApp/userDefaults.json @@ -61,7 +61,7 @@ { "command": "paste", "keys": "ctrl+v" }, // Press Ctrl+Shift+F to open the search box - { "command": "find", "keys": "ctrl+shift+f"}, + { "command": "find", "keys": "ctrl+shift+f" }, // Press Alt+Shift+D to open a new pane. // - "split": "auto" makes this pane open in the direction that provides the most surface area.