diff options
author | arcadia-devtools <[email protected]> | 2022-06-09 14:39:19 +0300 |
---|---|---|
committer | arcadia-devtools <[email protected]> | 2022-06-09 14:39:19 +0300 |
commit | c04b663c7bb4b750deeb8f48f620497ec13da8fa (patch) | |
tree | 151ebc8bfdd2ad918caf5e6e2d8013e14272ddf8 /contrib/python/Pygments/py3/pygments/lexers/automation.py | |
parent | 0d55ca22c507d18c2f35718687e0b06d9915397b (diff) |
intermediate changes
ref:2d4f292087954c9344efdabb7b2a67f466263c65
Diffstat (limited to 'contrib/python/Pygments/py3/pygments/lexers/automation.py')
-rw-r--r-- | contrib/python/Pygments/py3/pygments/lexers/automation.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/contrib/python/Pygments/py3/pygments/lexers/automation.py b/contrib/python/Pygments/py3/pygments/lexers/automation.py index 7b03e39a060..00f448ea1c1 100644 --- a/contrib/python/Pygments/py3/pygments/lexers/automation.py +++ b/contrib/python/Pygments/py3/pygments/lexers/automation.py @@ -4,7 +4,7 @@ Lexers for automation scripting languages. - :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS. + :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ @@ -17,11 +17,12 @@ __all__ = ['AutohotkeyLexer', 'AutoItLexer'] class AutohotkeyLexer(RegexLexer): """ - For `autohotkey <http://www.autohotkey.com/>`_ source code. + For autohotkey source code. .. versionadded:: 1.4 """ name = 'autohotkey' + url = 'http://www.autohotkey.com/' aliases = ['autohotkey', 'ahk'] filenames = ['*.ahk', '*.ahkl'] mimetypes = ['text/x-autohotkey'] @@ -194,7 +195,7 @@ class AutohotkeyLexer(RegexLexer): class AutoItLexer(RegexLexer): """ - For `AutoIt <http://www.autoitscript.com/site/autoit/>`_ files. + For AutoIt files. AutoIt is a freeware BASIC-like scripting language designed for automating the Windows GUI and general scripting @@ -202,6 +203,7 @@ class AutoItLexer(RegexLexer): .. versionadded:: 1.6 """ name = 'AutoIt' + url = 'http://www.autoitscript.com/site/autoit/' aliases = ['autoit'] filenames = ['*.au3'] mimetypes = ['text/x-autoit'] |