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
Maybe it's me but it feels weird to have a relative pattern that puts the pattern before the base. While the reading goes "pattern 'relative to' base", the mental model goes like "base + pattern"
newvscode.RelativePattern('*.ts',folder);
vs
// closer to how I would manually write a patternnewvscode.RelativePattern(folder,'*.ts');
The text was updated successfully, but these errors were encountered:
re #34831
Maybe it's me but it feels weird to have a relative pattern that puts the pattern before the base. While the reading goes "pattern 'relative to' base", the mental model goes like "base + pattern"
vs
The text was updated successfully, but these errors were encountered: