VBScript-vscode
VBScript-vscode copied to clipboard
A vscode extension for VBScript language support
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.