This commit is contained in:
Nox Sluijtman 2023-10-20 14:58:22 +02:00
parent 3fba3e9f3e
commit aedbe148ba

View file

@ -8,5 +8,5 @@ if [ $# -eq 1 ] ; then
esac esac
else else
script=$(find ~/.local/bin -type f | sk --preview 'cat {}') script=$(find ~/.local/bin -type f | sk --preview 'cat {}')
[ ! -z "$script" ] && $EDITOR $script || exit 0 [ -n "$script" ] && $EDITOR "$script" || exit 0
fi fi