Hi 👋
I would like to condense my shell invocations from two lines to one, however I lose syntax highlighting when I try the example below:
test1:
#!/usr/bin/env -S bash -Eeuo pipefail
echo "Highlighting does not work"
test2:
#!/usr/bin/env bash
set -Eeuo pipefail
echo "Highlighting does work"
test3:
#!/usr/bin/env bash -Eeuo pipefail
echo "Highlighting does work but not sure if this is considered best practice"
Thanks!