From 865597b74fafba987df0bbeb851ce1699c2303df Mon Sep 17 00:00:00 2001 From: Taylor Plewe Date: Sun, 18 May 2025 19:06:55 -0600 Subject: [PATCH] change command aliases to be more in line with the other buffer ones --- helix-term/src/commands/typed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index 026f525a0..0ac55ce72 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -2721,7 +2721,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[ }, TypableCommand { name: "buffer-reopen", - aliases: &["bro"], + aliases: &["br", "breopen"], doc: "Re-open the most previously closed buffer.", fun: buffer_reopen, completer: CommandCompleter::none(),