Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
/ VBScript-vscode Public archive

A vscode extension for VBScript language support

License

Notifications You must be signed in to change notification settings

Luncher91/VBScript-vscode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VBScript symbols extension

This extension provides symbols for VBScript.

Pressing Ctrl + Shift + O lists all symbols of the current file.

You can display symbols by using extensions like "Code Outline" by Patryk Zawadzki as well.

Supported Symbols

  • Class
  • Function
  • Sub
  • Property
  • Field
  • global and class wide Const
  • Dim
  • Parameters

Version 1.0.0

This version is the first version which contains a valuable feature set to make VBScript development more productive. This version supports the recognition of all important symbols of a file and provides IntelliSense support according the scope.

(Maybe) Upcoming Features

VBScript debugging

I would like to see a VBScript debugger built in into this extension. This will most likely be only available for windows but it would make the VSCode - VBScript experience somwhat complete.

Lexer (ANTLR?)

I would appreciate if the regular expressions of mine will be superseded someday by a formal grammar. A popular possibility would be ANTLR. I hope that this would make it a bit faster, more reliable and much easier to read.

GitHub