From @dexwerx on January 5, 2017 20:59
- VSCode Version: 1.8.1
- OS Version: Windows 7 x64
Steps to Reproduce:
- Create a Shell Script
- Paste
# grab field types from ORACLE
sqlplus -s user/pass << EOD | sed '/^$/d' | awk 'NR>2{print}' > temp.txt
SET PAGESIZE 0;
SET FEEDBACK OFF;
DESCRIBE $1;
EOD
everything after the end of heredoc token EOD is highlighted the same as the rest of the heredoc.
Copied from original issue: microsoft/vscode#18192