summaryrefslogtreecommitdiff
path: root/pygments/lexers/robotframework.py
diff options
context:
space:
mode:
authorHélio Guilherme <helioxentric@gmail.com>2022-01-27 05:58:01 +0000
committerGitHub <noreply@github.com>2022-01-27 06:58:01 +0100
commitd9ddff1bacee29c73484596c842563627b2e60f2 (patch)
treea6cf01e8438d6b8d2d4b4780b441b36b728425e2 /pygments/lexers/robotframework.py
parent50b98586359dd3da5f1c085a6d09779111de1b58 (diff)
downloadpygments-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.py2
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):