shigma / vscode-wl

Wolfram Language support for Visual Studio Code.
MIT License
49 stars 4 forks source link

Bracket matching wrong if Head contains brackets #17

Open lingqi-su opened 4 years ago

lingqi-su commented 4 years ago

The bracket matching seems to be wrong if Head also contains brackets. For instance,

f[1][x_] := x ^ 2
f[2][x_] := x ^ 3

Table[If[i < 3, f[1][i], f[2][i]], {i, 1, 10}]

OS: windows 10

Capture