Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
By default this workflow will look for
sublime-package.overrides.jsonthat can look like this:{ "add": { "rust-analyzer.terminusAutoClose": { "default": false, "description": "Whether or not to automatically close terminus panel/tab upon completion.", "type": "boolean" }, "rust-analyzer.terminusUsePanel": { "default": false, "description": "Whether or not to spawn a panel at the bottom, or a new tab.", "type": "boolean" } }, "remove": [ "rust-analyzer.debug.buildBeforeRestart", "rust-analyzer.debug.engine", "rust-analyzer.debug.engineSettings", "rust-analyzer.debug.openDebugPane", "rust-analyzer.debug.sourceFileMap", "rust-analyzer.initializeStopped", "rust-analyzer.restartServerOnConfigChange", "rust-analyzer.runnables.askBeforeUpdateTest", "rust-analyzer.runnables.problemMatcher", "rust-analyzer.server.extraEnv", "rust-analyzer.server.path", "rust-analyzer.showDependenciesExplorer", "rust-analyzer.showRequestFailedErrorNotification", "rust-analyzer.showSyntaxTree", "rust-analyzer.showUnlinkedFileNotification", "rust-analyzer.statusBar.clickAction", "rust-analyzer.testExplorer", "rust-analyzer.trace.extension", "rust-analyzer.trace.server" ], "transform": [ "walk(if type == \"object\" then with_entries(if .key == \"description\" then .key = \"markdownDescription\" else . end) else . end)", "walk(if type == \"object\" then with_entries(if .key == \"enumDescriptions\" then .key = \"markdownEnumDescriptions\" else . end) else . end)" ] }It will also print the full settings schema and sublime-settings settings to make it easier to replace everything in one go instead of merging manually.
Next step I guess is to automate it so that the changes are merged to relevant files by the bot.