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
Copy file name to clipboardExpand all lines: src/vs/platform/contextkey/common/contextkey.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -613,7 +613,7 @@ export class ContextKeyAndExpr implements ContextKeyExpr {
613
613
614
614
if(einstanceofContextKeyOrExpr){
615
615
// Not allowed, because we don't have parens!
616
-
thrownewError(`It is not allowed to have an or expression here due to lack of parens!`);
616
+
thrownewError(`It is not allowed to have an or expression here due to lack of parens! For example "a && (b||c)" is not supported, use "(a&&b) || (a&&c)" instead.`);
0 commit comments