From 4c9f19372ac68d129b9f6c8c38cf64a425c70727 Mon Sep 17 00:00:00 2001 From: Austin Wolfgram Date: Thu, 3 Aug 2023 23:31:34 -0400 Subject: [PATCH] fix range formatting error message typo --- helix-term/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 7fb17ed8e7df..e0622559375e 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -4178,7 +4178,7 @@ fn format_selections(cx: &mut Context) { }) else { cx.editor - .set_error("No configured language server does not support range formatting"); + .set_error("No configured language server supports range formatting"); return; };