bkmr 7.6.0

Knowledge management for humans and agents — bookmarks, snippets, etc, searchable, executable.
Documentation
//! 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.

pub mod backend;
pub mod di;
pub mod domain;
pub mod error;
pub mod services;

#[cfg(test)]
mod tests;

pub use backend::BkmrLspBackend;

pub async fn run_lsp_server(settings: &crate::config::Settings, no_interpolation: bool) {
    backend::run_server(settings, no_interpolation).await;
}