Conversation
|
Issues
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: dbc69b607a
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| if runtime.is_none() { | ||
| let _ = state.plugin_runtime().start_plugin(plugin_id); | ||
| runtime = state |
There was a problem hiding this comment.
Avoid starting disabled plugins while resolving settings
resolve_plugin_settings_defaults drops errors from runtime_for_workspace_with_config and then unconditionally calls start_plugin, so a plugin that is disabled in config still gets executed when settings are loaded. Since get_plugin_settings is invoked during settings rendering, opening the Settings modal can run disabled plugins in the background, defeating the disable gate and unexpectedly executing plugin code.
Useful? React with 👍 / 👎.
| let _ = self | ||
| .runtime | ||
| .vcs_stash_push(message, include_untracked) | ||
| .map_err(|e| self.map_runtime_error(e))?; |
There was a problem hiding this comment.
Preserve path-scoped stash behavior for plugin backends
PluginVcsProxy::stash_push no longer forwards the paths argument to the runtime call, so path-limited stash requests are widened to whole-repo stashes for plugin backends. git_stash_push still accepts and passes path subsets, which means users selecting specific files can get a full working-tree stash instead of the intended scoped stash.
Useful? React with 👍 / 👎.

No description provided.