mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Prevent auto-format in auto-save (#12817)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
parent
d8c4c7c26f
commit
df752bbd45
3 changed files with 58 additions and 13 deletions
|
@ -678,10 +678,16 @@ pub(super) fn buffers_remaining_impl(editor: &mut Editor) -> anyhow::Result<()>
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone, Copy)]
|
||||||
|
pub struct WriteAllOptions {
|
||||||
|
pub force: bool,
|
||||||
|
pub write_scratch: bool,
|
||||||
|
pub auto_format: bool,
|
||||||
|
}
|
||||||
|
|
||||||
pub fn write_all_impl(
|
pub fn write_all_impl(
|
||||||
cx: &mut compositor::Context,
|
cx: &mut compositor::Context,
|
||||||
force: bool,
|
options: WriteAllOptions,
|
||||||
write_scratch: bool,
|
|
||||||
) -> anyhow::Result<()> {
|
) -> anyhow::Result<()> {
|
||||||
let mut errors: Vec<&'static str> = Vec::new();
|
let mut errors: Vec<&'static str> = Vec::new();
|
||||||
let config = cx.editor.config();
|
let config = cx.editor.config();
|
||||||
|
@ -699,7 +705,7 @@ pub fn write_all_impl(
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
if doc.path().is_none() {
|
if doc.path().is_none() {
|
||||||
if write_scratch {
|
if options.write_scratch {
|
||||||
errors.push("cannot write a buffer without a filename");
|
errors.push("cannot write a buffer without a filename");
|
||||||
}
|
}
|
||||||
return None;
|
return None;
|
||||||
|
@ -722,14 +728,14 @@ pub fn write_all_impl(
|
||||||
// Save an undo checkpoint for any outstanding changes.
|
// Save an undo checkpoint for any outstanding changes.
|
||||||
doc.append_changes_to_history(view);
|
doc.append_changes_to_history(view);
|
||||||
|
|
||||||
let fmt = if config.auto_format {
|
let fmt = if options.auto_format && config.auto_format {
|
||||||
doc.auto_format().map(|fmt| {
|
doc.auto_format().map(|fmt| {
|
||||||
let callback = make_format_callback(
|
let callback = make_format_callback(
|
||||||
doc_id,
|
doc_id,
|
||||||
doc.version(),
|
doc.version(),
|
||||||
target_view,
|
target_view,
|
||||||
fmt,
|
fmt,
|
||||||
Some((None, force)),
|
Some((None, options.force)),
|
||||||
);
|
);
|
||||||
jobs.add(Job::with_callback(callback).wait_before_exiting());
|
jobs.add(Job::with_callback(callback).wait_before_exiting());
|
||||||
})
|
})
|
||||||
|
@ -738,11 +744,11 @@ pub fn write_all_impl(
|
||||||
};
|
};
|
||||||
|
|
||||||
if fmt.is_none() {
|
if fmt.is_none() {
|
||||||
cx.editor.save::<PathBuf>(doc_id, None, force)?;
|
cx.editor.save::<PathBuf>(doc_id, None, options.force)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !errors.is_empty() && !force {
|
if !errors.is_empty() && !options.force {
|
||||||
bail!("{:?}", errors);
|
bail!("{:?}", errors);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -758,7 +764,14 @@ fn write_all(
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
write_all_impl(cx, false, true)
|
write_all_impl(
|
||||||
|
cx,
|
||||||
|
WriteAllOptions {
|
||||||
|
force: false,
|
||||||
|
write_scratch: true,
|
||||||
|
auto_format: true,
|
||||||
|
},
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn force_write_all(
|
fn force_write_all(
|
||||||
|
@ -770,7 +783,14 @@ fn force_write_all(
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
write_all_impl(cx, true, true)
|
write_all_impl(
|
||||||
|
cx,
|
||||||
|
WriteAllOptions {
|
||||||
|
force: true,
|
||||||
|
write_scratch: true,
|
||||||
|
auto_format: true,
|
||||||
|
},
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn write_all_quit(
|
fn write_all_quit(
|
||||||
|
@ -781,7 +801,14 @@ fn write_all_quit(
|
||||||
if event != PromptEvent::Validate {
|
if event != PromptEvent::Validate {
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
write_all_impl(cx, false, true)?;
|
write_all_impl(
|
||||||
|
cx,
|
||||||
|
WriteAllOptions {
|
||||||
|
force: false,
|
||||||
|
write_scratch: true,
|
||||||
|
auto_format: true,
|
||||||
|
},
|
||||||
|
)?;
|
||||||
quit_all_impl(cx, false)
|
quit_all_impl(cx, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -793,7 +820,14 @@ fn force_write_all_quit(
|
||||||
if event != PromptEvent::Validate {
|
if event != PromptEvent::Validate {
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
let _ = write_all_impl(cx, true, true);
|
let _ = write_all_impl(
|
||||||
|
cx,
|
||||||
|
WriteAllOptions {
|
||||||
|
force: true,
|
||||||
|
write_scratch: true,
|
||||||
|
auto_format: true,
|
||||||
|
},
|
||||||
|
);
|
||||||
quit_all_impl(cx, true)
|
quit_all_impl(cx, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -87,7 +87,13 @@ fn request_auto_save(editor: &mut Editor) {
|
||||||
jobs: &mut Jobs::new(),
|
jobs: &mut Jobs::new(),
|
||||||
};
|
};
|
||||||
|
|
||||||
if let Err(e) = commands::typed::write_all_impl(context, false, false) {
|
let options = commands::WriteAllOptions {
|
||||||
|
force: false,
|
||||||
|
write_scratch: false,
|
||||||
|
auto_format: false,
|
||||||
|
};
|
||||||
|
|
||||||
|
if let Err(e) = commands::typed::write_all_impl(context, options) {
|
||||||
context.editor.set_error(format!("{}", e));
|
context.editor.set_error(format!("{}", e));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1522,7 +1522,12 @@ impl Component for EditorView {
|
||||||
}
|
}
|
||||||
Event::FocusLost => {
|
Event::FocusLost => {
|
||||||
if context.editor.config().auto_save.focus_lost {
|
if context.editor.config().auto_save.focus_lost {
|
||||||
if let Err(e) = commands::typed::write_all_impl(context, false, false) {
|
let options = commands::WriteAllOptions {
|
||||||
|
force: false,
|
||||||
|
write_scratch: false,
|
||||||
|
auto_format: false,
|
||||||
|
};
|
||||||
|
if let Err(e) = commands::typed::write_all_impl(context, options) {
|
||||||
context.editor.set_error(format!("{}", e));
|
context.editor.set_error(format!("{}", e));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue