We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24a2c65 commit 13d67ccCopy full SHA for 13d67cc
py/vimlparser.py
@@ -80,6 +80,8 @@ class AttributeDict(dict):
80
"^[a-z]$" : "^[a-z]$",
81
"^[vgslabwt]:$\\|^\\([vgslabwt]:\\)\\?[A-Za-z_][0-9A-Za-z_#]*$" : "^[vgslabwt]:$|^([vgslabwt]:)?[A-Za-z_][0-9A-Za-z_#]*$",
82
"^[0-7]$" : "^[0-7]$",
83
+ "^[0-9A-Fa-f][0-9A-Fa-f]$" : "^[0-9A-Fa-f][0-9A-Fa-f]$",
84
+ "^\.[0-9A-Fa-f]$" : "^\.[0-9A-Fa-f]$",
85
}
86
87
def viml_add(lst, item):
0 commit comments