VS Code Extension

Get full IDE support for IndoriLang in VS Code with syntax highlighting, snippets, and more.

Installation

Install the IndoriLang extension from the VS Code marketplace:

Method 1: From VS Code

  1. Open VS Code
  2. Go to Extensions (Ctrl+Shift+X / Cmd+Shift+X)
  3. Search for "IndoriLang"
  4. Click Install

Method 2: From Command Line

bash
code --install-extension indori-lang

Features

  • Syntax Highlighting - Color-coded IndoriLang keywords and syntax
  • Auto Bracket Closing - Automatically closes brackets, braces, and quotes
  • Auto-indentation - Smart indentation for code blocks
  • Snippets - Quick code snippets for common patterns
  • File Association - Automatic recognition of .il files

Snippets

The extension includes helpful snippets for common IndoriLang patterns:

Type if and press Tab

indori
agar_re (condition) {
  $0
}

Type func and press Tab

indori
bhiya_ka functionName() {
  $0
}

Type while and press Tab

indori
jabtak_re (condition) {
  $0
}

Need Help?

If you encounter any issues with the VS Code extension, please report them on GitHub.

Report Issue