summaryrefslogtreecommitdiffhomepage
path: root/packages/web/src
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-11-20 14:01:02 -0600
committerAiden Cline <[email protected]>2025-11-20 14:01:02 -0600
commitcba239bc8fa5513e30174c4455397f26a4ed9b97 (patch)
tree4c3f6383e60169acc41f9c937b09dd2067eb1389 /packages/web/src
parent6f5e3ddfb3d367bc2f0e61aa404cbfed58467131 (diff)
downloadopencode-cba239bc8fa5513e30174c4455397f26a4ed9b97.tar.gz
opencode-cba239bc8fa5513e30174c4455397f26a4ed9b97.zip
change default child session cycle keybind to <leader>right, and <leader>left
Diffstat (limited to 'packages/web/src')
-rw-r--r--packages/web/src/content/docs/agents.mdx4
-rw-r--r--packages/web/src/content/docs/keybinds.mdx4
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/web/src/content/docs/agents.mdx b/packages/web/src/content/docs/agents.mdx
index c99988ad8..3dd7f292e 100644
--- a/packages/web/src/content/docs/agents.mdx
+++ b/packages/web/src/content/docs/agents.mdx
@@ -89,8 +89,8 @@ A general-purpose agent for researching complex questions, searching for code, a
```
3. **Navigation between sessions**: When subagents create their own child sessions, you can navigate between the parent session and all child sessions using:
- - **Ctrl+Right** (or your configured `session_child_cycle` keybind) to cycle forward through parent → child1 → child2 → ... → parent
- - **Ctrl+Left** (or your configured `session_child_cycle_reverse` keybind) to cycle backward through parent ← child1 ← child2 ← ... ← parent
+ - **<Leader>+Right** (or your configured `session_child_cycle` keybind) to cycle forward through parent → child1 → child2 → ... → parent
+ - **<Leader>+Left** (or your configured `session_child_cycle_reverse` keybind) to cycle backward through parent ← child1 ← child2 ← ... ← parent
This allows you to seamlessly switch between the main conversation and specialized subagent work.
diff --git a/packages/web/src/content/docs/keybinds.mdx b/packages/web/src/content/docs/keybinds.mdx
index ecac695b3..afcff3a0e 100644
--- a/packages/web/src/content/docs/keybinds.mdx
+++ b/packages/web/src/content/docs/keybinds.mdx
@@ -23,8 +23,8 @@ OpenCode has a list of keybinds that you can customize through the OpenCode conf
"session_unshare": "none",
"session_interrupt": "escape",
"session_compact": "<leader>c",
- "session_child_cycle": "ctrl+right",
- "session_child_cycle_reverse": "ctrl+left",
+ "session_child_cycle": "<leader>+right",
+ "session_child_cycle_reverse": "<leader>+left",
"messages_page_up": "pageup",
"messages_page_down": "pagedown",
"messages_half_page_up": "ctrl+alt+u",