From 5fad59be3d73df8b66f72a855091b1b2aa5f0963 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Sun, 25 Jan 2026 10:54:29 +0100 Subject: fix(workstation): make ed not launch editor on Ctrl+C --- nixos/profiles/workstation/scripts/ed | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'nixos/profiles') diff --git a/nixos/profiles/workstation/scripts/ed b/nixos/profiles/workstation/scripts/ed index a3dd433..bed7d79 100755 --- a/nixos/profiles/workstation/scripts/ed +++ b/nixos/profiles/workstation/scripts/ed @@ -1,2 +1,3 @@ #!/usr/bin/env bash -$VISUAL $(find . -not -path "*/.*" | sk --no-info "$@") +files=$(find . -not -path "*/.*" | sk --no-info "$@") || exit +$VISUAL "$files" -- cgit v1.3.1