summaryrefslogtreecommitdiff
path: root/support/texlab/crates/texlab/src/features/formatting/latexindent.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/texlab/src/features/formatting/latexindent.rs')
-rw-r--r--support/texlab/crates/texlab/src/features/formatting/latexindent.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/support/texlab/crates/texlab/src/features/formatting/latexindent.rs b/support/texlab/crates/texlab/src/features/formatting/latexindent.rs
index c269550b74..bf5385401b 100644
--- a/support/texlab/crates/texlab/src/features/formatting/latexindent.rs
+++ b/support/texlab/crates/texlab/src/features/formatting/latexindent.rs
@@ -5,8 +5,8 @@ use std::{
use base_db::{Document, LatexIndentConfig, Workspace};
use distro::Language;
-use lsp_types::TextEdit;
-use rowan::{TextLen, TextRange};
+use lsp_types::{Position, TextEdit};
+use rowan::TextLen;
use tempfile::tempdir;
use crate::util::line_index_ext::LineIndexExt;
@@ -51,8 +51,10 @@ pub fn format_with_latexindent(
None
} else {
let line_index = &document.line_index;
+ let start = Position::new(0, 0);
+ let end = line_index.line_col_lsp(old_text.text_len());
Some(vec![TextEdit {
- range: line_index.line_col_lsp_range(TextRange::new(0.into(), old_text.text_len())),
+ range: lsp_types::Range::new(start, end),
new_text,
}])
}