Skip to content
| Marketplace
Sign in
Visual Studio Code>Visualization>vizualNew to Visual Studio Code? Get it now.
vizual

vizual

Rangga Gunarto

|
46 installs
| (1) | Free
A node-graph visualizer for symbols in vscode.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Vizual - Project Graph Visualizer

Logo

Demo Download: vizual-0.2.1.vsix

An interactive VS Code extension that visualizes your project structure as a node graph, showing folders, files, and code symbols (classes, functions, methods, etc.).

Release

Features

  • Interactive Node Graph: Visualize your project structure with an expandable, hierarchical graph
  • Multi-Level Exploration:
    • Expand folders to see files
    • Expand files to see symbols (classes, functions, methods, variables, etc.)
  • Smart Navigation:
    • Click nodes to expand them
    • Ctrl+Click to open files/symbols in the editor
  • Filtering: Configure include/exclude patterns, max depth, and node limits
  • Color Coding: Customize colors by node type (folder, file, class, function, etc.)
  • Debug Integration:
    • Highlights files with breakpoints
    • Shows currently active file
    • Active Mode to dim non-active nodes
  • Physics Quick Toggle:
    • Press P to pause/resume physics simulation
    • Graph interaction remains enabled while paused
  • Animation Mode:
    • Animate expansion from root with Depth and Pop Speed controls
    • Children pop out sequentially from their parent node for clearer flow
    • Press ESC to cancel animation and restore previous expanded state
  • Error/Warning Highlighting:
    • Toggle in Settings to override all colors with diagnostics
    • Code-backed nodes are red (error), yellow (warning-only), or green (clean)
    • Non-code nodes remain gray
  • Hover Code Snippets:
    • Hover a code-backed symbol node to view a 4-line snippet
    • Snippet includes line numbers for quick source context
  • Powered by vis-network: Fast and responsive graph rendering

Usage

  1. Open a workspace/folder in VS Code
  2. Open Command Palette (Ctrl+Shift+P or Cmd+Shift+P)
  3. Run: Vizual: Open Project Graph
  4. The graph panel will open showing your project root
  5. Click nodes to expand folders or files
  6. Ctrl+Click to open files or navigate to symbols

Controls

  • Change Root: Select a different root folder for the graph
  • Active Mode: Toggle to highlight only active files and files with breakpoints
  • P Key: Pause/resume physics simulation without disabling interaction
  • Depth + Pop Speed + Animate: Run staged root animation from Settings
  • ESC while animating: Cancel and restore pre-animation graph state
  • Error/Warning Highlighting toggle: Enable full diagnostic coloring override
  • Filters: Configure include/exclude patterns and limits
    • Include patterns (glob)
    • Exclude patterns (glob) - defaults exclude node_modules, .git, dist, etc.
    • Max depth
    • Max nodes (safety limit)
  • Colors: Customize node colors by type

When Error/Warning Highlighting is enabled:

  • Red: one or more errors exist for that node range
  • Yellow: one or more warnings exist and no errors
  • Green: no warnings/errors
  • Gray: non-code nodes/files

Diagnostic mode overrides debug, active mode, breakpoint, hover, and custom color rules until disabled.

Animation Mode

  1. Open Settings.
  2. Set Depth (how deep expansion should go).
  3. Set Pop Speed (0.5x to 2.0x) to control animation pacing.
  4. Click Animate.
  5. Press ESC any time to cancel and restore the graph to its pre-animation state.

Notes:

  • Animation collapses back to root before running for consistent playback.
  • Pop Speed affects animation timing only (not normal expansion behavior).

Graph Interactions

  • Single Click: Expand a folder or file node
  • Ctrl+Click:
    • Folder: Reveal in Explorer
    • File: Open in editor
    • Symbol: Open file and jump to symbol location

Node Types

  • Folders: Yellow boxes (expandable)
  • Files: Blue ellipses (expandable to show symbols)
  • Classes: Green diamonds
  • Functions/Methods: Purple/Yellow dots
  • Variables: Orange dots
  • And more: Interfaces, enums, namespaces, properties, etc.

Default Excludes

By default, these patterns are excluded:

  • **/node_modules/**
  • **/.git/**
  • **/dist/**
  • **/out/**
  • **/*.map

You can modify these in the Filters panel.

Requirements

  • VS Code 1.107.0 or higher

Extension Settings

This extension currently has no settings in VS Code settings. Configuration is done through the webview UI.

Known Issues

  • Large projects may hit the node limit (default 1000 nodes) - increase in Filters if needed
  • Symbol expansion depends on language support installed in VS Code

Development

To work on this extension:

  1. Clone the repository
  2. Run npm install
  3. Press F5 to open Extension Development Host
  4. Run the command Vizual: Open Project Graph

Release Notes

0.2.1 (2026-03-30)

New Features

  • Added Error/Warning Highlighting settings section with toggle.
  • Added node coloring by diagnostics for code-backed nodes:
    • Red = error, Yellow = warning-only, Green = clean.
  • Added symbol child diagnostic coloring using each child's code range.

Improvements

  • Diagnostic mode now fully overrides all other color modes while enabled.
  • Non-code nodes remain gray for clearer diagnostic focus.

0.2.0 (2026-03-30)

New Features

  • Added Animate Mode with Depth and Pop Speed controls.
  • Added sequential child pop animation from parent nodes.
  • Added ESC cancel with full pre-animation state restore.

Improvements

  • Removed reset-heavy update path for much smoother default expansions.
  • Improved settings panel visuals and fixed close button/textarea layout issues.

0.1.6 (2026-03-30)

New Features

  • Press P to pause/resume graph physics while keeping node interaction available.
  • Hover popups now show the first 4 lines of code (with line numbers) for source-backed child/symbol nodes.

Improvements

  • Reduced jitter by avoiding forced hover refresh on nodes with no children.
  • Removed keyboard focus border artifacts in graph interaction.

0.1.0 (2025-12-14)

First public release of Vizual, an interactive project graph visualizer for VS Code.

New Features

  • Interactive graph: expand folders → files → symbols (classes, functions, methods, variables)
  • Smart navigation: click to expand; Ctrl+Click to open files or jump to symbols
  • Physics controls: adjustable center force, link force, and link length
  • Color rules: customize colors by node kind and file extension
  • Filtering: include/exclude glob patterns, max depth, node limits
  • Active Mode: dims non-active nodes; highlights active file (green) and breakpoints (red)
  • Root pinning: keeps the root node anchored to prevent graph drift

Performance

  • Stabilization for faster layout
  • Tuned physics (damping 0.65, minVelocity 0.05) for smoother ease-out
  • Reduced central gravity intensity to avoid over-clustering

Improvements

  • Toggle expand/collapse on node click
  • Distinct shapes for folders, files, classes, functions, methods, variables, interfaces, enums
  • Live breakpoint and active file tracking

License

See LICENSE.md

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft