diff full-doc LSP edits (#4041)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
parent
6caa7a7f56
commit
8c2cc43017
1 changed files with 14 additions and 0 deletions
|
@ -204,6 +204,20 @@ pub mod util {
|
||||||
// in reverse order.
|
// in reverse order.
|
||||||
edits.sort_unstable_by_key(|edit| edit.range.start);
|
edits.sort_unstable_by_key(|edit| edit.range.start);
|
||||||
|
|
||||||
|
// Generate a diff if the edit is a full document replacement.
|
||||||
|
#[allow(clippy::collapsible_if)]
|
||||||
|
if edits.len() == 1 {
|
||||||
|
let is_document_replacement = edits.first().and_then(|edit| {
|
||||||
|
let start = lsp_pos_to_pos(doc, edit.range.start, offset_encoding)?;
|
||||||
|
let end = lsp_pos_to_pos(doc, edit.range.end, offset_encoding)?;
|
||||||
|
Some(start..end)
|
||||||
|
}) == Some(0..doc.len_chars());
|
||||||
|
if is_document_replacement {
|
||||||
|
let new_text = Rope::from(edits.pop().unwrap().new_text);
|
||||||
|
return helix_core::diff::compare_ropes(doc, &new_text);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Transaction::change(
|
Transaction::change(
|
||||||
doc,
|
doc,
|
||||||
edits.into_iter().map(|edit| {
|
edits.into_iter().map(|edit| {
|
||||||
|
|
Loading…
Reference in a new issue