Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>The Language Support (.zvo)New to Visual Studio Code? Get it now.
The Language Support (.zvo)

The Language Support (.zvo)

Mark Fomin

|
9 installs
| (0) | Free
Syntax highlighting for The Language (.zvo files)
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

The Language Support (.zvo)

Light Dark

Syntax highlighting and basic language support for The Language (.zvo files). .zvo stands for The Language Virtual Object.

TODO: implement our own language server for the-lang

Features

  • Syntax highlighting for keywords, types, strings, numbers, operators, and identifiers.
  • Support for comments (//, /* */).
  • Language configuration for auto-closing brackets and comments.

Installation

  1. Open Visual Studio Code.
  2. Go to the Extensions view (Ctrl+Shift+X or Cmd+Shift+X on Mac).
  3. Search for "ext:zvo".
  4. Click Install.

Usage

Create or open a file with the .zvo extension to enable Zov language support.

def sum(nums: number[]): number {
    let result = 0;
    for (const num of nums) {
        result += num;
    }
    return result;
}

if (result > 0) {
    print("Positive sum");
} else if (result < 0) {
    print("Negative sum");
} else {
    print("Zero sum");
}

Build extension

npm i
npm run pack
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft