fix: :left does not take an argument

This commit is contained in:
Nik Revenco 2025-03-25 15:35:05 +00:00
parent d048c6ec21
commit b9f60bdfaa
2 changed files with 2 additions and 2 deletions

View file

@ -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 |

View file

@ -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 {