diff --git a/crates/call/src/call.rs b/crates/call/src/call.rs index 3561cc3385..fb437162f2 100644 --- a/crates/call/src/call.rs +++ b/crates/call/src/call.rs @@ -239,7 +239,8 @@ impl ActiveCall { if result.is_ok() { this.update(&mut cx, |this, cx| this.report_call_event("invite", cx))?; } else { - // TODO: Resport collaboration error + //TODO: report collaboration error + log::error!("invite failed: {:?}", result); } this.update(&mut cx, |this, cx| { diff --git a/crates/editor/src/element.rs b/crates/editor/src/element.rs index 7efb43bd48..ca7b193a45 100644 --- a/crates/editor/src/element.rs +++ b/crates/editor/src/element.rs @@ -1010,7 +1010,6 @@ impl EditorElement { .chars_at(cursor_position) .next() .and_then(|(character, _)| { - // todo!() currently shape_line panics if text conatins newlines let text = if character == '\n' { SharedString::from(" ") } else { diff --git a/crates/file_finder/src/file_finder.rs b/crates/file_finder/src/file_finder.rs index d49eb9ee60..0fe36084c2 100644 --- a/crates/file_finder/src/file_finder.rs +++ b/crates/file_finder/src/file_finder.rs @@ -312,7 +312,7 @@ impl FileFinderDelegate { cx: &mut ViewContext, ) -> Self { cx.observe(&project, |file_finder, _, cx| { - //todo!() We should probably not re-render on every project anything + //todo We should probably not re-render on every project anything file_finder .picker .update(cx, |picker, cx| picker.refresh(cx)) diff --git a/crates/gpui/src/action.rs b/crates/gpui/src/action.rs index ef02316f83..b9cdd4a8bc 100644 --- a/crates/gpui/src/action.rs +++ b/crates/gpui/src/action.rs @@ -128,6 +128,7 @@ impl ActionRegistry { } fn insert_action(&mut self, action: ActionData) { + //todo!(remove) let name: SharedString = action.name.into(); self.builders_by_name.insert(name.clone(), action.build); self.names_by_type_id.insert(action.type_id, name.clone());