summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Aglassinger <roskakori@users.sourceforge.net>2016-10-02 15:41:33 +0200
committerThomas Aglassinger <roskakori@users.sourceforge.net>2016-10-02 15:41:33 +0200
commit590580e08ee53b7934a7886bf43f42878d77ce5c (patch)
tree2f6f1fc81c7a1a508238ac9c73bb44a2907ed880
parentbc4380207f90b0c3f8edb77ad0b32ef1d701079f (diff)
downloadpygments-590580e08ee53b7934a7886bf43f42878d77ce5c.tar.gz
Added a few missing constants and keywords for VBScript.
-rw-r--r--pygments/lexers/_vbscript_builtins.py4
1 files changed, 4 insertions, 0 deletions
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',