| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -407,6 +407,7 @@ repository: | |||
| 407 | 407 | } | |
| 408 | 408 | ] | |
| 409 | 409 | "member-access": | |
| 410 | + name: "meta.member.access.python" | ||
| 410 | 411 | begin: "(\\.)\\s*(?!\\.)" | |
| 411 | 412 | end: ''' | |
| 412 | 413 | (?x) | |
@@ -1167,6 +1168,7 @@ repository: | |||
| 1167 | 1168 | "1": | |
| 1168 | 1169 | name: "entity.other.inherited-class.python" | |
| 1169 | 1170 | "member-access-class": | |
| 1171 | + name: "meta.member.access.python" | ||
| 1170 | 1172 | begin: "(\\.)\\s*(?!\\.)" | |
| 1171 | 1173 | end: "(?<=\\S)(?=\\W)|$" | |
| 1172 | 1174 | beginCaptures: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -614,6 +614,8 @@ it's probably control flow like: | |||
| 614 | 614 | </dict> | |
| 615 | 615 | <key>member-access</key> | |
| 616 | 616 | <dict> | |
| 617 | + <key>name</key> | ||
| 618 | + <string>meta.member.access.python</string> | ||
| 617 | 619 | <key>begin</key> | |
| 618 | 620 | <string>(\.)\s*(?!\.)</string> | |
| 619 | 621 | <key>end</key> | |
@@ -1796,6 +1798,8 @@ it's probably control flow like: | |||
| 1796 | 1798 | </dict> | |
| 1797 | 1799 | <key>member-access-class</key> | |
| 1798 | 1800 | <dict> | |
| 1801 | + <key>name</key> | ||
| 1802 | + <string>meta.member.access.python</string> | ||
| 1799 | 1803 | <key>begin</key> | |
| 1800 | 1804 | <string>(\.)\s*(?!\.)</string> | |
| 1801 | 1805 | <key>end</key> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -433,6 +433,7 @@ repository: | |||
| 433 | 433 | match: (?x) \b ([[:alpha:]_]\w*) \b | |
| 434 | 434 | ||
| 435 | 435 | member-access: | |
| 436 | + name: meta.member.access.python | ||
| 436 | 437 | begin: (\.)\s*(?!\.) | |
| 437 | 438 | end: | | |
| 438 | 439 | (?x) | |
@@ -947,6 +948,7 @@ repository: | |||
| 947 | 948 | '1': {name: entity.other.inherited-class.python} | |
| 948 | 949 | ||
| 949 | 950 | member-access-class: | |
| 951 | + name: meta.member.access.python | ||
| 950 | 952 | begin: (\.)\s*(?!\.) | |
| 951 | 953 | end: (?<=\S)(?=\W)|$ | |
| 952 | 954 | beginCaptures: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -75,6 +75,7 @@ meta.function.parameters.python | |||
| 75 | 75 | meta.function.python | |
| 76 | 76 | meta.item-access.python | |
| 77 | 77 | meta.lambda-function.python | |
| 78 | + meta.member.access.python | ||
| 78 | 79 | meta.named.regexp | |
| 79 | 80 | meta.typehint.comment.python | |
| 80 | 81 | punctuation.character.set.begin.regexp | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -60,127 +60,127 @@ | |||
| 60 | 60 | ' : punctuation.definition.string.end.python, source.python, string.quoted.single.python | |
| 61 | 61 | ] : punctuation.definition.list.end.python, source.python | |
| 62 | 62 | some : source.python | |
| 63 | - . : punctuation.separator.period.python, source.python | ||
| 64 | - __bases__ : source.python, support.variable.magic.python | ||
| 63 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 64 | + __bases__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 65 | 65 | some : source.python | |
| 66 | - . : punctuation.separator.period.python, source.python | ||
| 67 | - __class__ : source.python, support.variable.magic.python | ||
| 66 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 67 | + __class__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 68 | 68 | assert : keyword.control.flow.python, source.python | |
| 69 | 69 | : source.python | |
| 70 | 70 | __debug__ : source.python, support.variable.magic.python | |
| 71 | 71 | __builtins__ : source.python, support.variable.magic.python | |
| 72 | 72 | __builtins__ : source.python, support.variable.magic.python | |
| 73 | - . : punctuation.separator.period.python, source.python | ||
| 74 | - len : source.python | ||
| 73 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 74 | + len : meta.member.access.python, source.python | ||
| 75 | 75 | print : meta.function-call.python, source.python, support.function.builtin.python | |
| 76 | 76 | ( : meta.function-call.python, punctuation.definition.arguments.begin.python, source.python | |
| 77 | 77 | __builtins__ : meta.function-call.arguments.python, meta.function-call.python, source.python, support.variable.magic.python | |
| 78 | 78 | ) : meta.function-call.python, punctuation.definition.arguments.end.python, source.python | |
| 79 | 79 | some : source.python | |
| 80 | - . : punctuation.separator.period.python, source.python | ||
| 81 | - __dict__ : source.python, support.variable.magic.python | ||
| 80 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 81 | + __dict__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 82 | 82 | some : source.python | |
| 83 | - . : punctuation.separator.period.python, source.python | ||
| 84 | - __doc__ : source.python, support.variable.magic.python | ||
| 83 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 84 | + __doc__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 85 | 85 | some : source.python | |
| 86 | - . : punctuation.separator.period.python, source.python | ||
| 87 | - __file__ : source.python, support.variable.magic.python | ||
| 86 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 87 | + __file__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 88 | 88 | some : source.python | |
| 89 | - . : punctuation.separator.period.python, source.python | ||
| 90 | - __members__ : source.python, support.variable.magic.python | ||
| 89 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 90 | + __members__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 91 | 91 | some : source.python | |
| 92 | - . : punctuation.separator.period.python, source.python | ||
| 93 | - __metaclass__ : source.python, support.variable.magic.python | ||
| 92 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 93 | + __metaclass__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 94 | 94 | some : source.python | |
| 95 | - . : punctuation.separator.period.python, source.python | ||
| 96 | - __methods__ : source.python, support.variable.magic.python | ||
| 95 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 96 | + __methods__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 97 | 97 | some : source.python | |
| 98 | - . : punctuation.separator.period.python, source.python | ||
| 99 | - __module__ : source.python, support.variable.magic.python | ||
| 98 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 99 | + __module__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 100 | 100 | some : source.python | |
| 101 | - . : punctuation.separator.period.python, source.python | ||
| 102 | - __mro__ : source.python, support.variable.magic.python | ||
| 101 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 102 | + __mro__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 103 | 103 | some : source.python | |
| 104 | - . : punctuation.separator.period.python, source.python | ||
| 105 | - __name__ : source.python, support.variable.magic.python | ||
| 104 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 105 | + __name__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 106 | 106 | some : source.python | |
| 107 | - . : punctuation.separator.period.python, source.python | ||
| 108 | - __slots__ : source.python, support.variable.magic.python | ||
| 107 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 108 | + __slots__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 109 | 109 | some : source.python | |
| 110 | - . : punctuation.separator.period.python, source.python | ||
| 111 | - __subclasses__ : source.python, support.variable.magic.python | ||
| 110 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 111 | + __subclasses__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 112 | 112 | some : source.python | |
| 113 | - . : punctuation.separator.period.python, source.python | ||
| 114 | - __version__ : source.python, support.variable.magic.python | ||
| 113 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 114 | + __version__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 115 | 115 | some : source.python | |
| 116 | - . : punctuation.separator.period.python, source.python | ||
| 117 | - __weakref__ : source.python, support.variable.magic.python | ||
| 116 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 117 | + __weakref__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 118 | 118 | some : source.python | |
| 119 | - . : punctuation.separator.period.python, source.python | ||
| 120 | - __qualname__ : source.python, support.variable.magic.python | ||
| 119 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 120 | + __qualname__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 121 | 121 | some : source.python | |
| 122 | - . : punctuation.separator.period.python, source.python | ||
| 123 | - __code__ : source.python, support.variable.magic.python | ||
| 122 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 123 | + __code__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 124 | 124 | some : source.python | |
| 125 | - . : punctuation.separator.period.python, source.python | ||
| 126 | - __wrapped__ : source.python, support.variable.magic.python | ||
| 125 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 126 | + __wrapped__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 127 | 127 | some : source.python | |
| 128 | - . : punctuation.separator.period.python, source.python | ||
| 129 | - __signature__ : source.python, support.variable.magic.python | ||
| 128 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 129 | + __signature__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 130 | 130 | some : source.python | |
| 131 | - . : punctuation.separator.period.python, source.python | ||
| 132 | - __defaults__ : source.python, support.variable.magic.python | ||
| 131 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 132 | + __defaults__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 133 | 133 | some : source.python | |
| 134 | - . : punctuation.separator.period.python, source.python | ||
| 135 | - __func__ : source.python, support.variable.magic.python | ||
| 134 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 135 | + __func__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 136 | 136 | some : source.python | |
| 137 | - . : punctuation.separator.period.python, source.python | ||
| 138 | - __self__ : source.python, support.variable.magic.python | ||
| 137 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 138 | + __self__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 139 | 139 | some : source.python | |
| 140 | - . : punctuation.separator.period.python, source.python | ||
| 141 | - __kwdefaults__ : source.python, support.variable.magic.python | ||
| 140 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 141 | + __kwdefaults__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 142 | 142 | some : source.python | |
| 143 | - . : punctuation.separator.period.python, source.python | ||
| 144 | - __matmul__ : source.python, support.function.magic.python | ||
| 143 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 144 | + __matmul__ : meta.member.access.python, source.python, support.function.magic.python | ||
| 145 | 145 | some : source.python | |
| 146 | - . : punctuation.separator.period.python, source.python | ||
| 147 | - __imatmul__ : source.python, support.function.magic.python | ||
| 146 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 147 | + __imatmul__ : meta.member.access.python, source.python, support.function.magic.python | ||
| 148 | 148 | some : source.python | |
| 149 | - . : punctuation.separator.period.python, source.python | ||
| 150 | - __rmatmul__ : source.python, support.function.magic.python | ||
| 149 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 150 | + __rmatmul__ : meta.member.access.python, source.python, support.function.magic.python | ||
| 151 | 151 | some : source.python | |
| 152 | - . : punctuation.separator.period.python, source.python | ||
| 153 | - __annotations__ : source.python, support.variable.magic.python | ||
| 152 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 153 | + __annotations__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 154 | 154 | some : source.python | |
| 155 | - . : punctuation.separator.period.python, source.python | ||
| 156 | - __init_subclass__ : source.python, support.function.magic.python | ||
| 155 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 156 | + __init_subclass__ : meta.member.access.python, source.python, support.function.magic.python | ||
| 157 | 157 | some : source.python | |
| 158 | - . : punctuation.separator.period.python, source.python | ||
| 159 | - __set_name__ : source.python, support.function.magic.python | ||
| 158 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 159 | + __set_name__ : meta.member.access.python, source.python, support.function.magic.python | ||
| 160 | 160 | some : source.python | |
| 161 | - . : punctuation.separator.period.python, source.python | ||
| 162 | - __fspath__ : source.python, support.function.magic.python | ||
| 161 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 162 | + __fspath__ : meta.member.access.python, source.python, support.function.magic.python | ||
| 163 | 163 | some : source.python | |
| 164 | - . : punctuation.separator.period.python, source.python | ||
| 165 | - __classcell__ : source.python, support.variable.magic.python | ||
| 164 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 165 | + __classcell__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 166 | 166 | some : source.python | |
| 167 | - . : punctuation.separator.period.python, source.python | ||
| 168 | - __bytes__ : source.python, support.function.magic.python | ||
| 167 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 168 | + __bytes__ : meta.member.access.python, source.python, support.function.magic.python | ||
| 169 | 169 | some : source.python | |
| 170 | - . : punctuation.separator.period.python, source.python | ||
| 171 | - __spec__ : source.python, support.variable.magic.python | ||
| 170 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 171 | + __spec__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 172 | 172 | some : source.python | |
| 173 | - . : punctuation.separator.period.python, source.python | ||
| 174 | - __path__ : source.python, support.variable.magic.python | ||
| 173 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 174 | + __path__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 175 | 175 | some : source.python | |
| 176 | - . : punctuation.separator.period.python, source.python | ||
| 177 | - __prepare__ : source.python, support.function.magic.python | ||
| 176 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 177 | + __prepare__ : meta.member.access.python, source.python, support.function.magic.python | ||
| 178 | 178 | some : source.python | |
| 179 | - . : punctuation.separator.period.python, source.python | ||
| 180 | - __package__ : source.python, support.variable.magic.python | ||
| 179 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 180 | + __package__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 181 | 181 | some : source.python | |
| 182 | - . : punctuation.separator.period.python, source.python | ||
| 183 | - __traceback__ : source.python, support.variable.magic.python | ||
| 182 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 183 | + __traceback__ : meta.member.access.python, source.python, support.variable.magic.python | ||
| 184 | 184 | some : source.python | |
| 185 | - . : punctuation.separator.period.python, source.python | ||
| 186 | - __notspecial__ : source.python | ||
| 185 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 186 | + __notspecial__ : meta.member.access.python, source.python | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,21 +7,22 @@ | |||
| 7 | 7 | ||
| 8 | 8 | ||
| 9 | 9 | ||
| 10 | + | ||
| 10 | 11 | some : source.python | |
| 11 | - . : punctuation.separator.period.python, source.python | ||
| 12 | - int : source.python | ||
| 12 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 13 | + int : meta.member.access.python, source.python | ||
| 13 | 14 | some : source.python | |
| 14 | - . : punctuation.separator.period.python, source.python | ||
| 15 | - sum : source.python | ||
| 15 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 16 | + sum : meta.member.access.python, source.python | ||
| 16 | 17 | some : source.python | |
| 17 | - . : punctuation.separator.period.python, source.python | ||
| 18 | - super : source.python | ||
| 18 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 19 | + super : meta.member.access.python, source.python | ||
| 19 | 20 | some : source.python | |
| 20 | - . : punctuation.separator.period.python, source.python | ||
| 21 | - unicode : source.python | ||
| 21 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 22 | + unicode : meta.member.access.python, source.python | ||
| 22 | 23 | some : source.python | |
| 23 | - . : punctuation.separator.period.python, source.python | ||
| 24 | - foo : source.python | ||
| 24 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 25 | + foo : meta.member.access.python, source.python | ||
| 25 | 26 | some : source.python | |
| 26 | - . : punctuation.separator.period.python, source.python | ||
| 27 | - Exception : source.python | ||
| 27 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 28 | + Exception : meta.member.access.python, source.python | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -7,20 +7,21 @@ | |||
| 7 | 7 | ||
| 8 | 8 | ||
| 9 | 9 | ||
| 10 | + | ||
| 10 | 11 | some : source.python | |
| 11 | - . : punctuation.separator.period.python, source.python | ||
| 12 | - : source.python | ||
| 13 | - True : keyword.illegal.name.python, source.python | ||
| 12 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 13 | + : meta.member.access.python, source.python | ||
| 14 | + True : keyword.illegal.name.python, meta.member.access.python, source.python | ||
| 14 | 15 | some : source.python | |
| 15 | - . : punctuation.separator.period.python, source.python | ||
| 16 | - : source.python | ||
| 17 | - \ : punctuation.separator.continuation.line.python, source.python | ||
| 18 | - : source.python | ||
| 19 | - : source.python | ||
| 20 | - True : keyword.illegal.name.python, source.python | ||
| 16 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 17 | + : meta.member.access.python, source.python | ||
| 18 | + \ : meta.member.access.python, punctuation.separator.continuation.line.python, source.python | ||
| 19 | + : meta.member.access.python, source.python | ||
| 20 | + : meta.member.access.python, source.python | ||
| 21 | + True : keyword.illegal.name.python, meta.member.access.python, source.python | ||
| 21 | 22 | True : constant.language.python, source.python | |
| 22 | 23 | some : source.python | |
| 23 | - . : punctuation.separator.period.python, source.python | ||
| 24 | - : source.python | ||
| 25 | - : source.python | ||
| 26 | - True : keyword.illegal.name.python, source.python | ||
| 24 | + . : meta.member.access.python, punctuation.separator.period.python, source.python | ||
| 25 | + : meta.member.access.python, source.python | ||
| 26 | + : meta.member.access.python, source.python | ||
| 27 | + True : keyword.illegal.name.python, meta.member.access.python, source.python | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments