From 0085953fa727ebe5d55985b4cdc2068be87a4362 Mon Sep 17 00:00:00 2001 From: Austin L Wolfgram Date: Fri, 4 Aug 2023 04:33:30 -0400 Subject: [PATCH] fix range formatting error message typo (#7823) --- 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 1020cd621e2f..31a14379bbea 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -4182,7 +4182,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; };