From b5efca9e65c1184abd23a2009cb5d3df37c9d21b Mon Sep 17 00:00:00 2001 From: Daniel Lynn Date: Wed, 16 Apr 2025 14:55:20 -0500 Subject: [PATCH] Catch helix or hx aliasing --- aliases.d/helix.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aliases.d/helix.zsh b/aliases.d/helix.zsh index f24246b..90bf448 100644 --- a/aliases.d/helix.zsh +++ b/aliases.d/helix.zsh @@ -1,3 +1,5 @@ if (( $+commands[helix] )); then alias hx="helix" +elif (( $+commands[hx] )); then + alias helix="hx" fi