aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorZisulin Morbrot2023-06-13 13:50:50 +0000
committerGitHub2023-06-13 13:50:50 +0000
commitfbd22afe29ea9ddb833a3bf1c3b479ccab210c36 (patch)
tree1089550e96e29af26433377d62e4411f08bbce49 /helix-term
parent015c079acc59653390797cbd700fdf7657e220a9 (diff)
Add rl and rla aliasses for reload and reload-all commands (#7158)
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands/typed.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs
index 824abbf4..80beab31 100644
--- a/helix-term/src/commands/typed.rs
+++ b/helix-term/src/commands/typed.rs
@@ -2581,14 +2581,14 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[
},
TypableCommand {
name: "reload",
- aliases: &[],
+ aliases: &["rl"],
doc: "Discard changes and reload from the source file.",
fun: reload,
signature: CommandSignature::none(),
},
TypableCommand {
name: "reload-all",
- aliases: &[],
+ aliases: &["rla"],
doc: "Discard changes and reload all documents from the source files.",
fun: reload_all,
signature: CommandSignature::none(),