Change the default tab switch mode back to inOrder (#8326)

We changed the default to "mru", and that was unkind to all our existing users.
This commit is contained in:
Mike Griese 2020-11-19 17:57:35 -06:00 committed by GitHub
parent 7db05b1383
commit a52a1d3b8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -721,7 +721,7 @@
"deprecated": true "deprecated": true
}, },
"tabSwitcherMode": { "tabSwitcherMode": {
"default": true, "default": "inOrder",
"description": "When set to \"true\" or \"mru\", the \"nextTab\" and \"prevTab\" commands will use the tab switcher UI, with most-recently-used ordering. When set to \"inOrder\", these actions will switch tabs in their current ordering. Set to \"false\" to disable the tab switcher.", "description": "When set to \"true\" or \"mru\", the \"nextTab\" and \"prevTab\" commands will use the tab switcher UI, with most-recently-used ordering. When set to \"inOrder\", these actions will switch tabs in their current ordering. Set to \"false\" to disable the tab switcher.",
"oneOf": [ "oneOf": [
{ {

View file

@ -83,7 +83,7 @@ namespace winrt::Microsoft::Terminal::Settings::Model::implementation
GETSET_SETTING(bool, DebugFeaturesEnabled, _getDefaultDebugFeaturesValue()); GETSET_SETTING(bool, DebugFeaturesEnabled, _getDefaultDebugFeaturesValue());
GETSET_SETTING(bool, StartOnUserLogin, false); GETSET_SETTING(bool, StartOnUserLogin, false);
GETSET_SETTING(bool, AlwaysOnTop, false); GETSET_SETTING(bool, AlwaysOnTop, false);
GETSET_SETTING(Model::TabSwitcherMode, TabSwitcherMode, Model::TabSwitcherMode::MostRecentlyUsed); GETSET_SETTING(Model::TabSwitcherMode, TabSwitcherMode, Model::TabSwitcherMode::InOrder);
GETSET_SETTING(bool, DisableAnimations, false); GETSET_SETTING(bool, DisableAnimations, false);
private: private:

View file

@ -18,7 +18,7 @@
"showTabsInTitlebar": true, "showTabsInTitlebar": true,
"showTerminalTitleInTitlebar": true, "showTerminalTitleInTitlebar": true,
"tabWidthMode": "equal", "tabWidthMode": "equal",
"useTabSwitcher": "mru", "tabSwitcherMode": "inOrder",
// Miscellaneous // Miscellaneous
"confirmCloseAllTabs": true, "confirmCloseAllTabs": true,