Menyeragamkan format kode sesuai rustfmt (126 file). Sebelumnya lefthook pre-commit 'cargo fmt --check' akan gagal pada commit apa pun.
19 lines
480 B
Rust
19 lines
480 B
Rust
//! LSP tool implementations — connect, diagnostics, hover, completion,
|
|
//! definition, references, disconnect.
|
|
|
|
pub mod completion;
|
|
pub mod connect;
|
|
pub mod definition;
|
|
pub mod diagnostics;
|
|
pub mod disconnect;
|
|
pub mod hover;
|
|
pub mod references;
|
|
|
|
pub use completion::LspCompletion;
|
|
pub use connect::LspConnect;
|
|
pub use definition::LspDefinition;
|
|
pub use diagnostics::LspDiagnostics;
|
|
pub use disconnect::LspDisconnect;
|
|
pub use hover::LspHover;
|
|
pub use references::LspReferences;
|