mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-29 21:49:33 +00:00
Avoid double message header in new contexts, don't expand default prompt (#16490)
Follow-up to https://github.com/zed-industries/zed/pull/16471 * Don't expand the default prompt by default, since it looks strange in the expanded state * Don't create two `You` headers by default. Just insert a blank line after the default prompt. Release Notes: - N/A
This commit is contained in:
parent
0042c24d3c
commit
30bfa56a24
1 changed files with 2 additions and 8 deletions
|
@ -1814,24 +1814,18 @@ impl ContextEditor {
|
|||
fn insert_default_prompt(&mut self, cx: &mut ViewContext<Self>) {
|
||||
let command_name = DefaultSlashCommand.name();
|
||||
self.editor.update(cx, |editor, cx| {
|
||||
editor.insert(&format!("/{command_name}"), cx)
|
||||
editor.insert(&format!("/{command_name}\n\n"), cx)
|
||||
});
|
||||
self.split(&Split, cx);
|
||||
let command = self.context.update(cx, |context, cx| {
|
||||
let first_message_id = context.messages(cx).next().unwrap().id;
|
||||
context.update_metadata(first_message_id, cx, |metadata| {
|
||||
metadata.role = Role::User;
|
||||
});
|
||||
context.reparse_slash_commands(cx);
|
||||
context.pending_slash_commands()[0].clone()
|
||||
});
|
||||
|
||||
self.run_command(
|
||||
command.source_range,
|
||||
&command.name,
|
||||
&command.arguments,
|
||||
false,
|
||||
true,
|
||||
false,
|
||||
self.workspace.clone(),
|
||||
cx,
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue