diff options
author | Thomas Symalla <5754458+tsymalla@users.noreply.github.com> | 2021-01-30 14:27:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-30 14:27:03 +0100 |
commit | fc0d85490c8b64de8f60d70042ad7919470a0059 (patch) | |
tree | f8203d5e9a8b27ac693b2db3f1993606a609663e /pygments/lexers/_mapping.py | |
parent | 8ef301a0251a575a776fd4550ff155b41af2def9 (diff) | |
download | pygments-git-fc0d85490c8b64de8f60d70042ad7919470a0059.tar.gz |
AMDGPU ISA Lexer (#1626)
* This commit implements a basic lexer for the AMDGPU ISA definition.
* Updated comment.
* Updated comment.
* Tried to fix case-sensitive issue.
* Updated AUTHORS file.
* Added shader unit test for the AMD ISA Parser.
* Renamed AMDGCN lexer to AMDGPU.
* Renamed example file.
* Renames.
Co-authored-by: Thomas Symalla <root@SEUCHOMAT.localdomain>
Diffstat (limited to 'pygments/lexers/_mapping.py')
-rw-r--r-- | pygments/lexers/_mapping.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pygments/lexers/_mapping.py b/pygments/lexers/_mapping.py index bb7df162..5f4473f6 100644 --- a/pygments/lexers/_mapping.py +++ b/pygments/lexers/_mapping.py @@ -14,6 +14,7 @@ LEXERS = { 'ABAPLexer': ('pygments.lexers.business', 'ABAP', ('abap',), ('*.abap', '*.ABAP'), ('text/x-abap',)), + 'AMDGPULexer': ('pygments.lexers.amdgpu', 'AMDGPU', ('amdgpu',), ('*.isa',), ()), 'APLLexer': ('pygments.lexers.apl', 'APL', ('apl',), ('*.apl',), ()), 'AbnfLexer': ('pygments.lexers.grammar_notation', 'ABNF', ('abnf',), ('*.abnf',), ('text/x-abnf',)), 'ActionScript3Lexer': ('pygments.lexers.actionscript', 'ActionScript 3', ('as3', 'actionscript3'), ('*.as',), ('application/x-actionscript3', 'text/x-actionscript3', 'text/actionscript3')), |