Hi there,
I don’t understand how indents work with multi-line “comments”.
I’m not comfortable with this behavior:
#!/bin/sh
if true; then
# echo hello
# echo world
fi
If I remove 1 character from to multi-line comment concatenated into 1 line:
#!/bin/sh
if true; then
# echo hell echo world
fi
It’s possible to disable concatenation?
