From 9c5cf0141080d9734ba24550e05e93e076af3cf2 Mon Sep 17 00:00:00 2001 From: Jonathan Cammisuli <4332460+Cammisuli@users.noreply.github.com> Date: Tue, 7 Oct 2025 16:25:05 -0400 Subject: [PATCH] add helix in omarchy-launch-editor (#1740) * use helix instead of hx in omarchy-launch-editor fixes #1739 * add both hx and helix --------- Co-authored-by: David Heinemeier Hansson --- bin/omarchy-launch-editor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-launch-editor b/bin/omarchy-launch-editor index bf90330..dbe84cf 100755 --- a/bin/omarchy-launch-editor +++ b/bin/omarchy-launch-editor @@ -1,7 +1,7 @@ #!/bin/bash case "${EDITOR:-nvim}" in -nvim | vim | nano | micro | hx) +nvim | vim | nano | micro | hx | helix) exec setsid uwsm-app -- "$TERMINAL" -e "$EDITOR" "$@" ;; *)