The code with a problem is:
case "$1" in
b)
echo '[B]'
return;;
yay)
if true; then
echo 'yay!!!'
fi;
esac
It looks like:
It should look like:
The colors of the fi and esac are incorrect. They should be the same as the if and the case.
Originally from @cD1rtX3 in microsoft/vscode#276512 (comment)
The code with a problem is:
It looks like:
It should look like:
The colors of the
fiandesacare incorrect. They should be the same as theifand thecase.Originally from @cD1rtX3 in microsoft/vscode#276512 (comment)