Apply subagent selection: fill input box with launch command
(&self, selected: &SubagentItem, chat_view: &mut ChatView)
| 3209 | |
| 3210 | /// Apply subagent selection: fill input box with launch command |
| 3211 | fn apply_subagent_selection(&self, selected: &SubagentItem, chat_view: &mut ChatView) { |
| 3212 | chat_view.set_input(&format!( |
| 3213 | "Launch subagent {} to finish task: ", |
| 3214 | selected.name |
| 3215 | )); |
| 3216 | } |
| 3217 | |
| 3218 | fn set_subagent_enabled( |
| 3219 | &self, |
no test coverage detected