mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-26 07:24:46 +00:00
Previously, `always_confirm` patterns would force confirmation even when `always_allow_tool_actions` was set to true. This was counterintuitive since the global setting should provide a way to skip all confirmations. The new precedence order is: 1. **`always_deny`** - still blocks for security 2. **`always_allow_tool_actions`** - when true, allows all non-denied actions 3. **`always_confirm`** - prompts if `always_allow_tool_actions` is false 4. **`always_allow`** - allows without prompting 5. **`default_mode`** - fallback behavior This means setting `always_allow_tool_actions=true` will now skip confirmation prompts from `always_confirm` patterns and override `default_mode: Deny` settings, while still respecting `always_deny` patterns for security. (No release notes because granular tool permissions are still feature-flagged.) Release Notes: - N/A |
||
|---|---|---|
| .. | ||
| default.json | ||
| initial_debug_tasks.json | ||
| initial_local_debug_tasks.json | ||
| initial_local_settings.json | ||
| initial_server_settings.json | ||
| initial_tasks.json | ||
| initial_user_settings.json | ||