Open alexr00 opened 1 week ago
z=$((x + y))
x is yellow entity.name.command.shell
I would expect x and y to have the same scopes.
x
y
Originally from @mcandre in https://github.com/microsoft/vscode/issues/231217#issuecomment-2410800447
The following problem may be related to this. When using arithmetic shift operation, everything after it is highlighted as a string. Like this: z=$((x << y))
z=$((x << y))
The code with a problem is:
x is yellow entity.name.command.shell
It looks like:
It should look like:
I would expect
x
andy
to have the same scopes.Originally from @mcandre in https://github.com/microsoft/vscode/issues/231217#issuecomment-2410800447