diff options
author | Hélio Guilherme <helioxentric@gmail.com> | 2022-01-27 05:58:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 06:58:01 +0100 |
commit | d9ddff1bacee29c73484596c842563627b2e60f2 (patch) | |
tree | a6cf01e8438d6b8d2d4b4780b441b36b728425e2 /pygments/lexers/robotframework.py | |
parent | 50b98586359dd3da5f1c085a6d09779111de1b58 (diff) | |
download | pygments-git-d9ddff1bacee29c73484596c842563627b2e60f2.tar.gz |
Add the file extension *.resource to the list of Robot Framework files. (#2047)
Diffstat (limited to 'pygments/lexers/robotframework.py')
-rw-r--r-- | pygments/lexers/robotframework.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/robotframework.py b/pygments/lexers/robotframework.py index 6c7cda16..096547ef 100644 --- a/pygments/lexers/robotframework.py +++ b/pygments/lexers/robotframework.py @@ -62,7 +62,7 @@ class RobotFrameworkLexer(Lexer): """ name = 'RobotFramework' aliases = ['robotframework'] - filenames = ['*.robot'] + filenames = ['*.robot', '*.resource'] mimetypes = ['text/x-robotframework'] def __init__(self, **options): |