This is a Visual Studio Code extension that built for Universal Robots™ Script language.
This extension provides a simple coding environment with VSCode that more easily use than simulator.
- Compiler, syntax check are NOT includes. You should upload program to controller or simulator for compile and execute.
- This extension WITHOUT LSP (Language Server Protocol)
- Below option will be modified after extension activated
editor.tabSize: 2
editor.insertSpaces: true
files.eol: '\n'
-
Completion and signatures
-
Show tips when mouse hover
-
Code snippets
-
Formatting
-
Go to definition
-
Symbols and outline
Please refer to change logs for detail changes.
You can download latest .vsix from release page.
Or to install the latest commits from master
branch, compile it into the VSIX code and then side load it into VSCode.
npm install -g vsce
to make sure you have vsce installed globallygit clone https://github.com/ahernguo/urscript-extension
to clone the repo if you havent already done socd urscript-extension
npm install
to install dependencies if you havent already done sovsce package
to build the package. This will generate a file with extension vsix- Open VSCode and Run the command Extensions: Install from VSIX..., choose the vsix file generated in the previous step