From 590580e08ee53b7934a7886bf43f42878d77ce5c Mon Sep 17 00:00:00 2001 From: Thomas Aglassinger Date: Sun, 2 Oct 2016 15:41:33 +0200 Subject: Added a few missing constants and keywords for VBScript. --- pygments/lexers/_vbscript_builtins.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pygments/lexers/_vbscript_builtins.py b/pygments/lexers/_vbscript_builtins.py index 493e5c7c..7d514790 100644 --- a/pygments/lexers/_vbscript_builtins.py +++ b/pygments/lexers/_vbscript_builtins.py @@ -10,6 +10,8 @@ :license: BSD, see LICENSE for details. """ KEYWORDS = [ + 'ByRef', + 'ByVal', # dim: special rule 'call', 'case', @@ -190,6 +192,8 @@ OPERATOR_WORDS = [ ] BUILTIN_CONSTANTS = [ + 'False', + 'True', 'vbAbort', 'vbAbortRetryIgnore', 'vbApplicationModal', -- cgit v1.2.1