This extension enables support for the Relational Dynamic Influence Diagram (RDDL) Language in Visual Studio Code, a language used to model Probabilist Planning problems.
With this extension, you can develop and see RDDL files easily and start using it to create new Probabilistic Plan domains.
Inspired on /~https://github.com/jan-dolejsi/vscode-pddl
- Syntax Highlighting for
*.rddl
files
- Syntax highlighting for
domain
andnon-fluents
keywords when declared onnon-fluents
andinstance
blocks
You need to have npm
previously installed
- Install
vsce
tool withnpm install -g @vscode/vsce
- Run on this folder the command
npm run vscode-package
- Once you have the file
rddl-for-vscode-0.0.1.vsix
on your machine, install it on Visual Studio Code Extension screen:
- RDDL IDE: RDDL IDE written in Python provided by the pyRDDLgym project
- RDDL Specification: Language specification for RDDL, used to structure the plug-in Textmate grammar
- Visual Studio Code Semantic Highlight Guide: Guide used to build this plug-in
- Texmate Grammar docs: Documentation on how to build a grammar in Textmate format
- Publishing VS Code extensions