Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>PonylangNew to Visual Studio Code? Get it now.
Ponylang

Ponylang

gbtb

|
1,624 installs
| (0) | Free
Provides basic support of Ponylang inside vscode
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Visual Studio Marketplace Version Visual Studio Marketplace Downloads

Ponylang extension README

This extension provides basic support for Pony language in vscode.

Features

  • Syntax highlighting (based on grammar definition from https://github.com/ponylang/sublime-pony)

  • Problem matcher, which parses ponyc output to highlight errors in editor

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"
        }
    ]
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft