Run additional checks from script/clippy if local (#29768)

Should cut down on the number of CI cycles if you're forgetful like I
am!

Release Notes:

- N/A
This commit is contained in:
Cole Miller 2025-05-01 21:26:12 -04:00 committed by GitHub
parent e1e3f2e423
commit d25da9728b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 20 additions and 10 deletions

View file

@ -646,7 +646,7 @@ struct ActiveItem {
item_handle: Box<dyn WeakItemHandle>,
active_editor: WeakEntity<Editor>,
_buffer_search_subscription: Subscription,
_editor_subscrpiption: Subscription,
_editor_subscription: Subscription,
}
#[derive(Debug)]
@ -2962,7 +2962,7 @@ impl OutlinePanel {
);
self.active_item = Some(ActiveItem {
_buffer_search_subscription: buffer_search_subscription,
_editor_subscrpiption: subscribe_for_editor_events(&new_active_editor, window, cx),
_editor_subscription: subscribe_for_editor_events(&new_active_editor, window, cx),
item_handle: new_active_item.downgrade_item(),
active_editor: new_active_editor.downgrade(),
});