We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e28e737 commit adc0a5dCopy full SHA for adc0a5d
crates/ruff_server/src/edit.rs
@@ -1,18 +1,18 @@
1
//! Types and utilities for working with text, modifying source files, and `Ruff <-> LSP` type conversion.
2
3
-mod document;
4
mod notebook;
5
mod range;
6
mod replacement;
+mod text_document;
7
8
use std::{collections::HashMap, path::PathBuf};
9
10
-pub(crate) use document::DocumentVersion;
11
-pub use document::TextDocument;
12
use lsp_types::PositionEncodingKind;
13
pub(crate) use notebook::NotebookDocument;
14
pub(crate) use range::{NotebookRange, RangeExt, ToRangeExt};
15
pub(crate) use replacement::Replacement;
+pub(crate) use text_document::DocumentVersion;
+pub use text_document::TextDocument;
16
17
use crate::{fix::Fixes, session::ResolvedClientCapabilities};
18
crates/ruff_server/src/edit/document.rs renamed to crates/ruff_server/src/edit/text_document.rs
0 commit comments