@codemirror/lang-python
Advanced tools
Comparing version 0.17.1 to 0.17.2
@@ -0,1 +1,7 @@ | ||
## 0.17.2 (2021-01-12) | ||
### Bug fixes | ||
Improves the highlighting specificity for names of function and class definitions. | ||
## 0.17.1 (2021-01-06) | ||
@@ -2,0 +8,0 @@ |
@@ -30,2 +30,4 @@ import { parser } from 'lezer-python'; | ||
"CallExpression/VariableName": tags.function(tags.variableName), | ||
"FunctionDefinition/VariableName": tags.function(tags.definition(tags.variableName)), | ||
"ClassDefinition/VariableName": tags.definition(tags.className), | ||
PropertyName: tags.propertyName, | ||
@@ -32,0 +34,0 @@ "CallExpression/MemberExpression/ProperyName": tags.function(tags.propertyName), |
{ | ||
"name": "@codemirror/lang-python", | ||
"version": "0.17.1", | ||
"version": "0.17.2", | ||
"description": "Python language support for the CodeMirror code editor", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
16861
150