This PR renames the `agent::QuoteSelection` to `agent::AddSelectionToThread` _and_ adds it as a menu item in both the right-click context menu within regular buffers as well as the "Selection" app menu. We've received feedback in the past about how hard to discover this feature is, and after watching [the Syntax podcast crew](https://www.youtube.com/watch?v=bRK3PeVFfVE) recently struggle with doing so—and then naturally looking for it in the context menu and not finding it—it felt like time to push a change. I think the rename + the availability in these places could help bringing it to surface more. The same action can be done in Cursor through the `cmd-l` keybinding, but in Zed, that triggers `editor::SelectLine`, which I don't want to override by default. However, if you're using Cursor's keymap, then `cmd-l` does trigger this action, as expected. <img width="500" height="1812" alt="Screenshot 2025-10-22 at 12 01@2x" src="https://github.com/user-attachments/assets/dfc2c41c-8d0a-4a1a-8ea1-1bd5d1aa1171" /> Release Notes: - agent: Improves discoverability of the previously called "quote selection" action—which allows to add a text selection in a buffer as context within the agent panel—by renaming it to "add selection to thread" and making it available from the right-click editor context menu as well as the "Selection" app menu.
84 lines
2.6 KiB
JSON
84 lines
2.6 KiB
JSON
[
|
|
// Cursor for MacOS. See: https://docs.cursor.com/kbd
|
|
{
|
|
"context": "Workspace",
|
|
"use_key_equivalents": true,
|
|
"bindings": {
|
|
"ctrl-i": "agent::ToggleFocus",
|
|
"ctrl-shift-i": "agent::ToggleFocus",
|
|
"ctrl-l": "agent::ToggleFocus",
|
|
"ctrl-shift-l": "agent::ToggleFocus",
|
|
"ctrl-shift-j": "agent::OpenSettings"
|
|
}
|
|
},
|
|
{
|
|
"context": "Editor && mode == full",
|
|
"use_key_equivalents": true,
|
|
"bindings": {
|
|
"ctrl-i": "agent::ToggleFocus",
|
|
"ctrl-shift-i": "agent::ToggleFocus",
|
|
"ctrl-shift-l": "agent::AddSelectionToThread", // In cursor uses "Ask" mode
|
|
"ctrl-l": "agent::AddSelectionToThread", // In cursor uses "Agent" mode
|
|
"ctrl-k": "assistant::InlineAssist",
|
|
"ctrl-shift-k": "assistant::InsertIntoEditor"
|
|
}
|
|
},
|
|
{
|
|
"context": "InlineAssistEditor",
|
|
"use_key_equivalents": true,
|
|
"bindings": {
|
|
"ctrl-shift-backspace": "editor::Cancel"
|
|
// "alt-enter": // Quick Question
|
|
// "ctrl-shift-enter": // Full File Context
|
|
// "ctrl-shift-k": // Toggle input focus (editor <> inline assist)
|
|
}
|
|
},
|
|
{
|
|
"context": "AgentPanel || ContextEditor || (MessageEditor > Editor)",
|
|
"use_key_equivalents": true,
|
|
"bindings": {
|
|
"ctrl-i": "workspace::ToggleRightDock",
|
|
"ctrl-shift-i": "workspace::ToggleRightDock",
|
|
"ctrl-l": "workspace::ToggleRightDock",
|
|
"ctrl-shift-l": "workspace::ToggleRightDock",
|
|
"ctrl-w": "workspace::ToggleRightDock", // technically should close chat
|
|
"ctrl-.": "agent::ToggleProfileSelector",
|
|
"ctrl-/": "agent::ToggleModelSelector",
|
|
"ctrl-shift-backspace": "editor::Cancel",
|
|
"ctrl-r": "agent::NewThread",
|
|
"ctrl-shift-v": "editor::Paste",
|
|
"ctrl-shift-k": "assistant::InsertIntoEditor"
|
|
// "escape": "agent::ToggleFocus"
|
|
///// Enable when Zed supports multiple thread tabs
|
|
// "ctrl-t": // new thread tab
|
|
// "ctrl-[": // next thread tab
|
|
// "ctrl-]": // next thread tab
|
|
///// Enable if Zed adds support for keyboard navigation of thread elements
|
|
// "tab": // cycle to next message
|
|
// "shift-tab": // cycle to previous message
|
|
}
|
|
},
|
|
{
|
|
"context": "Editor && editor_agent_diff",
|
|
"use_key_equivalents": true,
|
|
"bindings": {
|
|
"ctrl-enter": "agent::KeepAll",
|
|
"ctrl-backspace": "agent::RejectAll"
|
|
}
|
|
},
|
|
{
|
|
"context": "Editor && mode == full && edit_prediction",
|
|
"use_key_equivalents": true,
|
|
"bindings": {
|
|
"ctrl-right": "editor::AcceptPartialEditPrediction"
|
|
}
|
|
},
|
|
{
|
|
"context": "Terminal",
|
|
"use_key_equivalents": true,
|
|
"bindings": {
|
|
"ctrl-k": "assistant::InlineAssist"
|
|
}
|
|
}
|
|
]
|