mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +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 |
|
| `:read`, `:r` | Load a file into buffer |
|
||||||
| `:echo` | Prints the given arguments to the statusline. |
|
| `:echo` | Prints the given arguments to the statusline. |
|
||||||
| `:noop` | Does nothing. |
|
| `: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 |
|
| `: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 |
|
| `: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 {
|
TypableCommand {
|
||||||
name: "left",
|
name: "left",
|
||||||
aliases: &[],
|
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,
|
fun: left,
|
||||||
completer: CommandCompleter::none(),
|
completer: CommandCompleter::none(),
|
||||||
signature: Signature {
|
signature: Signature {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue