Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 962 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 962 Bytes

Visual Studio Marketplace Version Visual Studio Marketplace Downloads

Ponylang extension README

This extension provides basic support for Pony language in vscode.

Features

Example build task

You have to declare problem matcher in your tasks.json. See example below:

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build debug",
            "group": "build",
            "type": "shell",
            "options": {
                "cwd": "${fileDirname}",
            },
            "command": "ponyc --debug -o bin",
            "problemMatcher": "$ponyc-matcher"
        }
    ]
}