Comment out the terminal view

This commit is contained in:
Kirill Bulatov 2023-11-16 09:54:55 +02:00
parent a238368296
commit e3465fbcf9

View file

@ -546,12 +546,15 @@ impl Render for TerminalView {
.on_action(TerminalView::clear) .on_action(TerminalView::clear)
.on_action(TerminalView::show_character_palette) .on_action(TerminalView::show_character_palette)
.on_action(TerminalView::select_all) .on_action(TerminalView::select_all)
.child(TerminalElement::new( // todo!()
terminal_handle, .child(
focused, "TERMINAL HERE", // TerminalElement::new(
self.should_show_cursor(focused, cx), // terminal_handle,
self.can_navigate_to_selected_word, // focused,
)) // self.should_show_cursor(focused, cx),
// self.can_navigate_to_selected_word,
// )
)
// todo!() // todo!()
// .child(ChildView::new(&self.context_menu, cx)) // .child(ChildView::new(&self.context_menu, cx))
} }