From b9f60bdfaa73e0682e6fd1ab1b481bd9c1f385b0 Mon Sep 17 00:00:00 2001 From: Nik Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Tue, 25 Mar 2025 15:35:05 +0000 Subject: [PATCH] fix: `:left` does not take an argument --- book/src/generated/typable-cmd.md | 2 +- helix-term/src/commands/typed.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/book/src/generated/typable-cmd.md b/book/src/generated/typable-cmd.md index 45eed674e..3388a0827 100644 --- a/book/src/generated/typable-cmd.md +++ b/book/src/generated/typable-cmd.md @@ -89,6 +89,6 @@ | `:read`, `:r` | Load a file into buffer | | `:echo` | Prints the given arguments to the statusline. | | `:noop` | Does nothing. | -| `:left` | Align text to the left, optionally pass a number overriding the current document's text width | +| `:left` | Align text to the left | | `:center` | Center-align text, optionally pass a number overriding the current document's text width | | `:right` | Align text to the right, optionally pass a number overriding the current document's text width | diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index 928c396a1..b3ad18c91 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -3562,7 +3562,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[ TypableCommand { name: "left", aliases: &[], - doc: "Align text to the left, optionally pass a number overriding the current document's text width", + doc: "Align text to the left", fun: left, completer: CommandCompleter::none(), signature: Signature {