After hours of frustration I’ve come to the conclusion that SublimeText thinks I’m using javascript despite setting the language and script type to VBScript. The only issue I’m really having is it cannot properly indent without braces. After a reindent of an entire file I end up with the code near the bottom force to the left due to improper handling of else as below.
if request.QueryString("Page").count < 1 then
page = 1
else
page = CInt(request.QueryString("Page"))
end if
I did see a prior question where it was switched from VBScript to Javascript and while I know it’s not 2005 there is a lot of code that needs to be supported.
Thanks!