Luncher91 / VBScript-vscode

A vscode extension for VBScript language support
MIT License
20 stars 5 forks source link

Support symbols from includes #14

Open rebizu opened 6 years ago

rebizu commented 6 years ago

It would be nice to have symbols loading from external files like <!-- #include virtual = "/lib/lib.asp" -->

I have not created a extension for vscode before but i would like to help with this issue, but i dont know where to start.

Luncher91 commented 6 years ago

Hi,

Thank you for contributing to the project. That is a nice idea. The syntax you are using looks like asp code. The plugin does not support asp files yet. -- or maybe it does by accident 😉

The first step is to get the plugin dev environment running. So clone the repository and open the workspace (I just added a workspace configuration).

Then you can run npm install for each of the folders (client, server).

For each project there is a task to run the watch process. It watches the folders and compiles if anything changes.

To run an vscode instance you can just start the debug session for the client "Launch Extension (client)".

Please do not hesitate to ask if you need further help.