VBScript lexer

All questions regarding lexer highlighting schemes are discussed here...
Post Reply
ANewUser
Posts: 50
Joined: 25.01.2020 12:15

VBScript lexer

Post by ANewUser »

Hello!
Some issues (https://i.imgur.com/IUbkM7g.png):

Code: Select all

' the "explicit" keyword
option explicit
' the line continuation character "_"
strText = "abc" & _
"123"
' modulo operator "mod"
b = 100 mod 30
' integer division "\"
c = 100 \ 30
' statements "execute" "executeglobal"
execute "wscript.stdout.writeline ""some text"""
executeglobal "wscript.stdout.writeline ""global version"""
' the "nothing" keyword
set objRef = nothing
Alexey
Posts: 1633
Joined: 05.10.2012 22:10

Post by Alexey »

Post Reply