From e727650cb0ffd370e71b8ecd8ad80fdaf2efd544 Mon Sep 17 00:00:00 2001 From: ktunprasert Date: Sat, 19 Jul 2025 15:08:13 +0100 Subject: [PATCH] [text-object/indent] fix: corrected command description --- helix-term/src/commands.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index dfe5ca2e9..a73fe92f7 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -463,10 +463,10 @@ impl MappableCommand { goto_previous_buffer, "Goto previous buffer", goto_line_end_newline, "Goto newline at line end", goto_first_nonwhitespace, "Goto first non-blank in line", - goto_indent_start, "Goto start of scope indentaion", - goto_indent_end, "Goto end of scope indentation", - extend_to_indent_start, "Extend to start of scope indentation", - extend_to_indent_end, "Extend to end of scope indentation", + goto_indent_start, "Goto start of indent scope", + goto_indent_end, "Goto end of indent scope", + extend_to_indent_start, "Extend to start of indent scope", + extend_to_indent_end, "Extend to end of indent scope", trim_selections, "Trim whitespace from selections", extend_to_line_start, "Extend to line start", extend_to_first_nonwhitespace, "Extend to first non-blank in line",