⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

veridian_kernel/devtools/ide/
mod.rs

1//! IDE with LSP Support
2//!
3//! Text editor with gap buffer, multiple buffers, undo/redo, and a
4//! Language Server Protocol (LSP) client for code intelligence.
5
6pub mod editor;
7pub mod lsp_client;