You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/usr/bin/bash# broken while highlight after pipe
cat $foo|whileread i;do# broken done; highlight after outputecho"output";done;# OK
cat $foo|whileread i;doecho"output"done;# OK
cat $foo|whileread i;doecho"output";done# OK
cat $foo|whileread i;doecho"output";# COMMdone;
The code with a problem is:
It looks like:
The first
read
has:but the second
read
has:The first
done
has:but the second
done
has:It should look like:
I would expect that the squared
read
and the circleddone
should have the same color.Originally from @gullevek in microsoft/vscode#212572.
The text was updated successfully, but these errors were encountered: