Merge pull request #86 from mbtools/abap

Add support for ABAP and ABAP CDS languages
This commit is contained in:
Alastair Mooney 2021-11-09 12:05:33 +00:00 committed by GitHub
commit 5b7bb86dc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -65,6 +65,8 @@ There are additional inputs if you want to be able to assign issues to projects.
## Supported Languages
* ABAP
* ABAP CDS
* AutoHotkey
* C
* C++

View File

@ -484,5 +484,34 @@
"pattern": "//"
}
]
},
{
"language": "ABAP",
"markers": [
{
"type": "line",
"pattern": "\""
},
{
"type": "line",
"pattern": "\\*"
}
]
},
{
"language": "ABAP CDS",
"markers": [
{
"type": "line",
"pattern": "//"
},
{
"type": "block",
"pattern": {
"start": "/\\*",
"end": "\\*/"
}
}
]
}
]