language_tools.rs
1mod key_context_view;
2mod lsp_log;
3mod syntax_tree_view;
4
5#[cfg(test)]
6mod lsp_log_tests;
7
8use gpui::App;
9
10pub use lsp_log::{LogStore, LspLogToolbarItemView, LspLogView};
11pub use syntax_tree_view::{SyntaxTreeToolbarItemView, SyntaxTreeView};
12
13pub fn init(cx: &mut App) {
14 lsp_log::init(cx);
15 syntax_tree_view::init(cx);
16 key_context_view::init(cx);
17}