Update assistant to agent in settings and keymaps (#29943)
Closes #ISSUE Release Notes: - Agent Beta: Renamed the top-level `assistant` settings key to `agent`. A migration for existing settings files is included. - Agent Beta: Moved the `assistant::ToggleFocus`, `assistant::ToggleModelSelector`, and `assistant::OpenRulesLibrary` actions to the `agent` namespace. Existing keymaps that mention these actions by their old names will continue to work. --------- Co-authored-by: Max <max@zed.dev>
This commit is contained in:
@@ -772,7 +772,7 @@ impl CodegenAlternative {
|
||||
cx: &mut Context<CodegenAlternative>,
|
||||
) {
|
||||
let transaction = self.buffer.update(cx, |buffer, cx| {
|
||||
// Avoid grouping assistant edits with user edits.
|
||||
// Avoid grouping agent edits with user edits.
|
||||
buffer.finalize_last_transaction(cx);
|
||||
buffer.start_transaction(cx);
|
||||
buffer.edit(edits, None, cx);
|
||||
@@ -781,7 +781,7 @@ impl CodegenAlternative {
|
||||
|
||||
if let Some(transaction) = transaction {
|
||||
if let Some(first_transaction) = self.transformation_transaction_id {
|
||||
// Group all assistant edits into the first transaction.
|
||||
// Group all agent edits into the first transaction.
|
||||
self.buffer.update(cx, |buffer, cx| {
|
||||
buffer.merge_transactions(transaction, first_transaction, cx)
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user