mirror of https://github.com/helix-editor/helix
make `:u` alias `:update` (#6835)
* Gave the command update the alias u * Re added trailing newline * generated docspull/6855/head
parent
b7c62e200e
commit
228a4af35f
|
@ -46,7 +46,7 @@
|
||||||
| `:character-info`, `:char` | Get info about the character under the primary cursor. |
|
| `:character-info`, `:char` | Get info about the character under the primary cursor. |
|
||||||
| `:reload` | Discard changes and reload from the source file. |
|
| `:reload` | Discard changes and reload from the source file. |
|
||||||
| `:reload-all` | Discard changes and reload all documents from the source files. |
|
| `:reload-all` | Discard changes and reload all documents from the source files. |
|
||||||
| `:update` | Write changes only if the file has been modified. |
|
| `:update`, `:u` | Write changes only if the file has been modified. |
|
||||||
| `:lsp-workspace-command` | Open workspace command picker |
|
| `:lsp-workspace-command` | Open workspace command picker |
|
||||||
| `:lsp-restart` | Restarts the Language Server that is in use by the current doc |
|
| `:lsp-restart` | Restarts the Language Server that is in use by the current doc |
|
||||||
| `:lsp-stop` | Stops the Language Server that is in use by the current doc |
|
| `:lsp-stop` | Stops the Language Server that is in use by the current doc |
|
||||||
|
|
|
@ -2497,7 +2497,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
|
||||||
},
|
},
|
||||||
TypableCommand {
|
TypableCommand {
|
||||||
name: "update",
|
name: "update",
|
||||||
aliases: &[],
|
aliases: &["u"],
|
||||||
doc: "Write changes only if the file has been modified.",
|
doc: "Write changes only if the file has been modified.",
|
||||||
fun: update,
|
fun: update,
|
||||||
signature: CommandSignature::none(),
|
signature: CommandSignature::none(),
|
||||||
|
|
Loading…
Reference in New Issue