Pseudo Syntax Highlighting for VS Code
This extension provides syntax highlighting, bracket matching, and auto-indentation support for the Pseudo programming language.
Features
- Syntax Highlighting: Supports control flow keywords (
if, else, for, while, until, when, otherwise, etc.), operators, comments (# and //), numbers, strings, and custom function definitions.
- Built-in Functions and Classes: Highlighting for data structures (
Stack, Queue, HashMap, Set, MinHeap, MaxHeap, TreeNode, ListNode, Graph) and built-in functions (push, pop, len, print, show, input, etc.).
- Auto-Closing & Surrounding Pairs: Automatically closes braces
{}, brackets [], parentheses (), and quotes "" or ''.
- Indentation Rules: Automatically increases indent for new blocks (conditionals, loops, functions) and decreases indent for matching block ends (e.g.
else, catch, finally).
Manual Installation
- Copy the
pseudo-vscode-extension folder into your VS Code extensions folder:
- Windows:
%USERPROFILE%\.vscode\extensions
- macOS / Linux:
~/.vscode/extensions
- Restart VS Code.
| |