Closed
Description
The bug
I am not sure if this issue traces back to Theia. The IDE adds extra line breaks.
The behavior
when I copy (cntrl + c) and paste in my Ubuntu terminal, the output looks:
for i in {1..22}; do
cat -> test_${i} << EOF
#!/bin/bash
echo ${i}
EOF
done
Expected behavior
for i in {1..22}; do
cat -> test_${i} << EOF
#!/bin/bash
echo ${i}
EOF
done
Additional information
tried fixing it manually (with no luck):
"files.eol": "\n"