The atom text-editor language-package for MBLF, in memorial of atom
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# If this is your first time writing a language grammar, check out:
|
|
|
|
# - https://flight-manual.atom.io/hacking-atom/sections/creating-a-grammar/
|
|
|
|
|
|
|
|
'scopeName': 'source.mblf'
|
|
|
|
'name': 'MBLF'
|
|
|
|
'fileTypes': [
|
|
|
|
'extension'
|
|
|
|
]
|
|
|
|
'patterns': [
|
|
|
|
{
|
|
|
|
'match': '(^\\s*)(del)?var\ +'
|
|
|
|
'name': 'keyword.operator'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'match': ';;.*$'
|
|
|
|
'name': 'comment'
|
|
|
|
}
|
|
|
|
]
|