|
|
@ -35,7 +35,7 @@ use crate::{
|
|
|
|
ui::{self, Completion, Picker, Popup, Prompt, PromptEvent},
|
|
|
|
ui::{self, Completion, Picker, Popup, Prompt, PromptEvent},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
use crate::application::{LspCallbackWrapper, LspCallbacks};
|
|
|
|
use crate::application::{LspCallback, LspCallbackWrapper, LspCallbacks};
|
|
|
|
use futures_util::FutureExt;
|
|
|
|
use futures_util::FutureExt;
|
|
|
|
use std::{fmt, future::Future, path::Display, str::FromStr};
|
|
|
|
use std::{fmt, future::Future, path::Display, str::FromStr};
|
|
|
|
|
|
|
|
|
|
|
@ -1145,11 +1145,12 @@ mod cmd {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn write_impl<P: AsRef<Path>>(
|
|
|
|
fn write_impl<P: AsRef<Path>>(
|
|
|
|
view: &View,
|
|
|
|
cx: &mut compositor::Context,
|
|
|
|
doc: &mut Document,
|
|
|
|
|
|
|
|
path: Option<P>,
|
|
|
|
path: Option<P>,
|
|
|
|
) -> Result<tokio::task::JoinHandle<Result<(), anyhow::Error>>, anyhow::Error> {
|
|
|
|
) -> Result<tokio::task::JoinHandle<Result<(), anyhow::Error>>, anyhow::Error> {
|
|
|
|
use anyhow::anyhow;
|
|
|
|
use anyhow::anyhow;
|
|
|
|
|
|
|
|
let callbacks = &mut cx.callbacks;
|
|
|
|
|
|
|
|
let (view, doc) = current!(cx.editor);
|
|
|
|
|
|
|
|
|
|
|
|
if let Some(path) = path {
|
|
|
|
if let Some(path) = path {
|
|
|
|
if let Err(err) = doc.set_path(path.as_ref()) {
|
|
|
|
if let Err(err) = doc.set_path(path.as_ref()) {
|
|
|
@ -1163,15 +1164,21 @@ mod cmd {
|
|
|
|
.language_config()
|
|
|
|
.language_config()
|
|
|
|
.map(|config| config.auto_format)
|
|
|
|
.map(|config| config.auto_format)
|
|
|
|
.unwrap_or_default();
|
|
|
|
.unwrap_or_default();
|
|
|
|
if autofmt {
|
|
|
|
let fmt = if autofmt {
|
|
|
|
doc.format(view.id); // TODO: merge into save
|
|
|
|
doc.format().map(|fmt| {
|
|
|
|
}
|
|
|
|
let shared = fmt.shared();
|
|
|
|
Ok(tokio::spawn(doc.save()))
|
|
|
|
let callback = make_format_callback(doc.id(), doc.version(), true, shared.clone());
|
|
|
|
|
|
|
|
callbacks.push(callback);
|
|
|
|
|
|
|
|
shared
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
None
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(tokio::spawn(doc.format_and_save(fmt)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn write(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
|
|
|
fn write(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
|
|
|
let (view, doc) = current!(cx.editor);
|
|
|
|
if let Err(e) = write_impl(cx, args.first()) {
|
|
|
|
if let Err(e) = write_impl(view, doc, args.first()) {
|
|
|
|
|
|
|
|
cx.editor.set_error(e.to_string());
|
|
|
|
cx.editor.set_error(e.to_string());
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -1181,9 +1188,12 @@ mod cmd {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn format(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
|
|
|
fn format(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
|
|
|
let (view, doc) = current!(cx.editor);
|
|
|
|
let (_, doc) = current!(cx.editor);
|
|
|
|
|
|
|
|
|
|
|
|
doc.format(view.id)
|
|
|
|
if let Some(format) = doc.format() {
|
|
|
|
|
|
|
|
let callback = make_format_callback(doc.id(), doc.version(), false, format);
|
|
|
|
|
|
|
|
cx.callbacks.push(callback);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn set_indent_style(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
|
|
|
fn set_indent_style(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
|
|
@ -1288,8 +1298,7 @@ mod cmd {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn write_quit(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
|
|
|
fn write_quit(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
|
|
|
let (view, doc) = current!(cx.editor);
|
|
|
|
match write_impl(cx, args.first()) {
|
|
|
|
match write_impl(view, doc, args.first()) {
|
|
|
|
|
|
|
|
Ok(handle) => {
|
|
|
|
Ok(handle) => {
|
|
|
|
if let Err(e) = helix_lsp::block_on(handle) {
|
|
|
|
if let Err(e) = helix_lsp::block_on(handle) {
|
|
|
|
cx.editor.set_error(e.to_string());
|
|
|
|
cx.editor.set_error(e.to_string());
|
|
|
@ -1305,7 +1314,7 @@ mod cmd {
|
|
|
|
|
|
|
|
|
|
|
|
fn force_write_quit(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
|
|
|
fn force_write_quit(cx: &mut compositor::Context, args: &[&str], event: PromptEvent) {
|
|
|
|
let (view, doc) = current!(cx.editor);
|
|
|
|
let (view, doc) = current!(cx.editor);
|
|
|
|
match write_impl(view, doc, args.first()) {
|
|
|
|
match write_impl(cx, args.first()) {
|
|
|
|
Ok(handle) => {
|
|
|
|
Ok(handle) => {
|
|
|
|
if let Err(e) = helix_lsp::block_on(handle) {
|
|
|
|
if let Err(e) = helix_lsp::block_on(handle) {
|
|
|
|
cx.editor.set_error(e.to_string());
|
|
|
|
cx.editor.set_error(e.to_string());
|
|
|
@ -1902,6 +1911,35 @@ fn append_to_line(cx: &mut Context) {
|
|
|
|
doc.set_selection(view.id, selection);
|
|
|
|
doc.set_selection(view.id, selection);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
fn make_format_callback(
|
|
|
|
|
|
|
|
doc_id: DocumentId,
|
|
|
|
|
|
|
|
doc_version: i32,
|
|
|
|
|
|
|
|
set_unmodified: bool,
|
|
|
|
|
|
|
|
format: impl Future<Output = helix_lsp::util::LspFormatting> + Send + 'static,
|
|
|
|
|
|
|
|
) -> LspCallback {
|
|
|
|
|
|
|
|
Box::pin(async move {
|
|
|
|
|
|
|
|
let format = format.await;
|
|
|
|
|
|
|
|
let call: LspCallbackWrapper =
|
|
|
|
|
|
|
|
Box::new(move |editor: &mut Editor, compositor: &mut Compositor| {
|
|
|
|
|
|
|
|
let view_id = view!(editor).id;
|
|
|
|
|
|
|
|
if let Some(doc) = editor.document_mut(doc_id) {
|
|
|
|
|
|
|
|
if doc.version() == doc_version {
|
|
|
|
|
|
|
|
doc.apply(&Transaction::from(format), view_id);
|
|
|
|
|
|
|
|
doc.append_changes_to_history(view_id);
|
|
|
|
|
|
|
|
if set_unmodified {
|
|
|
|
|
|
|
|
doc.reset_modified();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
log::info!("discarded formatting changes because the document changed");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(call)
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
enum Open {
|
|
|
|
enum Open {
|
|
|
|
Below,
|
|
|
|
Below,
|
|
|
|
Above,
|
|
|
|
Above,
|
|
|
|