mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 10:57:48 +03:00
fix: :left
does not take an argument
This commit is contained in:
parent
d048c6ec21
commit
b9f60bdfaa
2 changed files with 2 additions and 2 deletions
|
@ -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 |
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue