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
"comment": "Highlight attribute access in otherwise non-specialized cases.",
430
+
"name": "meta.attribute.python",
431
+
"match": "(?x)\n\\b ([[:alpha:]_]\\w*) \\b\n"
432
+
},
416
433
"special-names": {
417
434
"name": "constant.other.caps.python",
418
435
"match": "(?x)\n\\b\n # we want to see \"enough\", meaning 2 or more upper-case\n # letters in the beginning of the constant\n #\n # for more details refer to:\n # https://github.com/MagicStack/MagicPython/issues/42\n (\n _* [[:upper:]] [_\\d]* [[:upper:]]\n )\n [[:upper:]\\d]* (_\\w*)?\n\\b\n"
@@ -459,6 +476,21 @@
459
476
}
460
477
]
461
478
},
479
+
"odd-function-call": {
480
+
"comment": "A bit obscured function call where there may have been an\narbitrary number of other operations to get the function.\nE.g. \"arr[idx](args)\"\n",
0 commit comments