Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/commands.rs')
| -rw-r--r-- | helix-term/src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index ec55ac66..5453adeb 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2289,7 +2289,7 @@ async fn make_format_callback( doc_id: DocumentId, doc_version: i32, modified: Modified, - format: impl Future<Output = helix_lsp::util::LspFormatting> + Send + 'static, + format: impl Future<Output = Transaction> + Send + 'static, ) -> anyhow::Result<job::Callback> { let format = format.await; let call: job::Callback = Box::new(move |editor, _compositor| { |