aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorAtticus Sebastiani2023-04-23 02:07:34 +0000
committerGitHub2023-04-23 02:07:34 +0000
commit228a4af35fec3be633c31ecbbdf0b6f7bb7a9fcd (patch)
tree7c4ce557df08398e7ec37a57b12ebcbe07ed3887 /helix-term
parentb7c62e200e0fbe600855e6a2d492286349cae4ae (diff)
make `:u` alias `:update` (#6835)
* Gave the command update the alias u * Re added trailing newline * generated docs
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands/typed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs
index eb5c156f..ea82dc36 100644
--- a/helix-term/src/commands/typed.rs
+++ b/helix-term/src/commands/typed.rs
@@ -2497,7 +2497,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
},
TypableCommand {
name: "update",
- aliases: &[],
+ aliases: &["u"],
doc: "Write changes only if the file has been modified.",
fun: update,
signature: CommandSignature::none(),