Skip to content

Commit

Permalink
Make set_unmodified an enum.
Browse files Browse the repository at this point in the history
  • Loading branch information
jneem authored and archseer committed Jun 30, 2021
1 parent 2902a10 commit b39e452
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,12 @@ mod cmd {
}
let fmt = doc.auto_format().map(|fmt| {
let shared = fmt.shared();
let callback = make_format_callback(doc.id(), doc.version(), true, shared.clone());
let callback = make_format_callback(
doc.id(),
doc.version(),
Modified::SetUnmodified,
shared.clone(),
);
jobs.callback(callback);
shared
});
Expand All @@ -1187,7 +1192,8 @@ mod cmd {
let (_, doc) = current!(cx.editor);

if let Some(format) = doc.format() {
let callback = make_format_callback(doc.id(), doc.version(), false, format);
let callback =
make_format_callback(doc.id(), doc.version(), Modified::LeaveModified, format);
cx.jobs.callback(callback);
}
}
Expand Down Expand Up @@ -1907,6 +1913,13 @@ fn append_to_line(cx: &mut Context) {
doc.set_selection(view.id, selection);
}

/// Sometimes when applying formatting changes we want to mark the buffer as unmodified, for
/// example because we just applied the same changes while saving.
enum Modified {
SetUnmodified,
LeaveModified,
}

// Creates an LspCallback that waits for formatting changes to be computed. When they're done,
// it applies them, but only if the doc hasn't changed.
//
Expand All @@ -1915,7 +1928,7 @@ fn append_to_line(cx: &mut Context) {
async fn make_format_callback(
doc_id: DocumentId,
doc_version: i32,
set_unmodified: bool,
modified: Modified,
format: impl Future<Output = helix_lsp::util::LspFormatting> + Send + 'static,
) -> anyhow::Result<job::Callback> {
let format = format.await;
Expand All @@ -1925,7 +1938,7 @@ async fn make_format_callback(
if doc.version() == doc_version {
doc.apply(&Transaction::from(format), view_id);
doc.append_changes_to_history(view_id);
if set_unmodified {
if let Modified::SetUnmodified = modified {
doc.reset_modified();
}
} else {
Expand Down

0 comments on commit b39e452

Please sign in to comment.