[go: up one dir, main page]

File: lib.rs

package info (click to toggle)
rust-lsp-textdocument 0.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 148 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 379 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
//!
//! A LSP text documents manager that helps mapping of text document.
//!
//! The text documents [position-encoding](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#positionEncodingKind) only supports `UTF-16`

mod text_document;
mod text_documents;

pub use text_document::FullTextDocument;
pub use text_documents::TextDocuments;