//! LSP (Language Server Protocol) implementation for bkmr
//!//! This module provides LSP server functionality for snippet completion
//! and editing in editors that support the Language Server Protocol.
pubmodbackend;pubmoddi;pubmoddomain;pubmoderror;pubmodservices;#[cfg(test)]modtests;pubusebackend::BkmrLspBackend;pub async fnrun_lsp_server(settings:&crate::config::Settings, no_interpolation:bool){backend::run_server(settings, no_interpolation).await;}