
Release Notes: - Added `cmd-shift-p debug: Open Key Context View` to help debug custom key bindings https://github.com/user-attachments/assets/de273c97-5b27-45aa-9ff1-f943b0ed7dfe
17 lines
374 B
Rust
17 lines
374 B
Rust
mod key_context_view;
|
|
mod lsp_log;
|
|
mod syntax_tree_view;
|
|
|
|
#[cfg(test)]
|
|
mod lsp_log_tests;
|
|
|
|
use gpui::AppContext;
|
|
|
|
pub use lsp_log::{LogStore, LspLogToolbarItemView, LspLogView};
|
|
pub use syntax_tree_view::{SyntaxTreeToolbarItemView, SyntaxTreeView};
|
|
|
|
pub fn init(cx: &mut AppContext) {
|
|
lsp_log::init(cx);
|
|
syntax_tree_view::init(cx);
|
|
key_context_view::init(cx);
|
|
}
|