Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/tau_coding/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def create_default_command_registry() -> CommandRegistry:
SlashCommand(
name="scoped-models",
usage="/scoped-models",
description="Choose models available to quick-cycle with Ctrl+P.",
description="Choose models available to quick-cycle with Ctrl+K.",
handler=_scoped_models_command,
search_terms=("scope", "quick", "cycle", "ctrl+p"),
)
Expand Down Expand Up @@ -430,7 +430,8 @@ def _hotkeys_command(context: CommandContext) -> CommandResult:
"- Shift+Enter: insert newline",
"- Alt+Enter: queue follow-up while running",
"- Esc: cancel active run",
"- Ctrl+K: open slash-command completions",
"- Ctrl+P: open command palette",
"- Ctrl+K: cycle scoped model",
"- Ctrl+R: open session picker",
"- Shift+Tab: cycle thinking mode",
"- Ctrl+T: toggle thinking tokens",
Expand Down
4 changes: 4 additions & 0 deletions src/tau_coding/tui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
TranscriptView,
render_chat_item,
render_compact_session_info,
render_completion_suggestions,
render_diff_content,
render_session_sidebar,
transcript_item_selection_text,
)
Expand Down Expand Up @@ -59,6 +61,8 @@
"load_tui_settings",
"render_chat_item",
"render_compact_session_info",
"render_completion_suggestions",
"render_diff_content",
"render_session_sidebar",
"run_tui_app",
"save_tui_settings",
Expand Down
Loading