BREAKING SETTINGS CHANGES IN 0.11
Do your settings look like this?
{
"globals": {
"defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"initialCols": 200,
"initialRows": 65,
"initialPosition": "0,0",
"wordDelimiters" : " ()\"'-:,;<>~!@#$%^&*|+=[]{}~?\u2502",
"confirmCloseAllTabs": true,
"keybindings": [
...
]
},
"profiles": {
...
}
}
Then change them to look like this:
{
"defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"initialCols": 200,
"initialRows": 65,
"initialPosition": "0,0",
"wordDelimiters" : " ()\"'-:,;<>~!@#$%^&*|+=[]{}~?\u2502",
"confirmCloseAllTabs": true,
"keybindings": [
...
],
"profiles": {
...
}
}
Or even better, make a backup of your settings file, and delete the contents entirely. We'll re-generate the file with some better formatting and more sane defaults, and you can copy the modifications you want back in.
BREAKING SETTINGS CHANGES IN 0.11
globalsdictionary, you'll want to move them out.globalsto the root of your settings file and delete the emptyglobalsobject.defaultProfilerequestedThemehas been renamed totheme(Rename 'requestedTheme' to 'theme' #5265)profiles.jsonhas been renamed tosettings.json. This should be transparent to you as we'll rename it on first launch (rename profiles.json to settings.json, clean up the defaults #5199)splitPanesplitmode, it'll default toautomatic(Use an Automatic split for splitPane by default #5194)copy's original and poorly-understoodtrimWhitespaceargument is now calledsingleLineto indicate that it will, in fact, copy text as a single line (Rename copy keybinding arg #5216)Do your settings look like this?
{ "globals": { "defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "initialCols": 200, "initialRows": 65, "initialPosition": "0,0", "wordDelimiters" : " ()\"'-:,;<>~!@#$%^&*|+=[]{}~?\u2502", "confirmCloseAllTabs": true, "keybindings": [ ... ] }, "profiles": { ... } }Then change them to look like this:
{ "defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "initialCols": 200, "initialRows": 65, "initialPosition": "0,0", "wordDelimiters" : " ()\"'-:,;<>~!@#$%^&*|+=[]{}~?\u2502", "confirmCloseAllTabs": true, "keybindings": [ ... ], "profiles": { ... } }Or even better, make a backup of your settings file, and delete the contents entirely. We'll re-generate the file with some better formatting and more sane defaults, and you can copy the modifications you want back in.