Migration occurs when colors are in user settings but not in workspace.
See original GitHub issue- OS: Mac 10.14.5
- VS Code: 1.37.1
- Peacock Version: 3.1.1
Peacock is creating new workspace settings when surpriseMeOnStartup
is false.
$ rg peacock ~/Library/Application\ Support/Code/User/settings.json
95: "peacock.surpriseMeOnStartup": false,
96: "peacock.affectStatusBar": false,
97: "peacock.affectActivityBar": false,
98: "peacock.affectAccentBorders": false,
99: "peacock.affectTabActiveBorder": true,
100: "peacock.favoriteColors": [
$ ls -a
./ ../
$ code .
$ ls -a
./ ../ .vscode/
$ bat --style=header,numbers .vscode/*
File: .vscode/settings.json
1 {
2 "peacock.color": "#777",
3 "workbench.colorCustomizations": {
4 "titleBar.activeBackground": "#777777",
5 "titleBar.inactiveBackground": "#77777799",
6 "titleBar.activeForeground": "#e7e7e7",
7 "titleBar.inactiveForeground": "#e7e7e799",
8 "tab.activeBorder": "#909090"
9 }
10 }
With Peacock disabled:
$ ls -a
./ ../
$ code .
$ ls -a
./ ../
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Releases · johnpapa/vscode-peacock - GitHub
Peacock now separates when colors will be applied (workspace color customizations) from when the peacock.color is saved. When a user applies ...
Read more >Changelog - Peacock
Migration occurs when colors are in user settings but not in workspace. Fixes 263 open in new window; During migration, Peacock is checking...
Read more >Supported & unsupported features - Google Workspace Migrate
For details, go to Create & manage an identity mapping. Only the default star color and shape is migrated.
Read more >Peacock for Visual Studio Code
Note: If at any time Peacock is writing colors unexpectedly, it may be due to a migration (see migration notes below). However, as...
Read more >Migrate presets, actions, and settings - Adobe Support
The Export/Import Presets is not restricted to computers running Photoshop as part of Creative Cloud. SOURCE COMPUTER: On the computer that has ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
thanks for verifying.
Just to clarify, I mistyped “workspace” when I meant “workbench”.
Just confirmed that on 3.1.4 no workspace
settings.json
is written in a fresh directory. Thanks for fix!