Skip to content
| Marketplace
Sign in
Visual Studio Code>Formatters>TabulaNew to Visual Studio Code? Get it now.
Tabula

Tabula

Tabula

|
1 install
| (0) | Free
Tabula - CSV transformation with spreadsheet-inspired scripting language
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Tabula for Visual Studio Code

VS Code extension for Tabula - a spreadsheet-inspired CSV transformation tool.

Features

  • 🔄 Auto-execution - Automatically runs Tabula when you save CSV files
  • ⚡ Instant Updates - See transformations applied immediately after save
  • 🎛️ Toggle Control - Enable/disable auto-execution with a command
  • 🔄 Smart Reload - Automatically reloads file from disk after transformation
  • 🎨 Syntax Highlighting - Beautiful syntax coloring for .tbl script files
  • 📝 Language Support - Auto-completion brackets, comments, and code folding for Tabula scripts

Prerequisites

  • Tabula CLI must be installed and in your $PATH
# Download from GitHub Pages
curl -LO https://pblazh.github.io/tabula/bin/darwin/arm64/tabula  # macOS M1/M2
chmod +x tabula
sudo mv tabula /usr/local/bin/

Or build from source

Usage

Auto-Execution on Save

  • Open a CSV file in VS Code
  • Add Tabula script directive:
#tabula #include "process.tbl"
A,B,C
1,2,3
4,5,6
  • Create your Tabula script (process.tbl):
// Calculate sum
let D1 = "Total";
let D2 = A2 + B2 + C2;
let D3 = A3 + B3 + C3;
  • Save the CSV file (Ctrl+S / Cmd+S)
  • Tabula runs automatically and updates the file!

How It Works

  1. File Save Detection - Extension listens for CSV file saves
  2. Execute Tabula - Runs tabula [-a] -u <file> on the saved file (with optional -a flag based on settings)
  3. Reload File - Updates the editor with transformed content
  4. Show Errors - Displays any errors in VS Code notifications in case of *.csv or add them as comments into the markdown file

Commands

Access commands via Command Palette (Ctrl+Shift+P / Cmd+Shift+P):

  • Tabula: execute - Manually run Tabula on the active markdown file
  • Tablua: toggle auto-execution: Toggle auto-execution on Save - Enable/disable automatic execution

Configuration

You can configure the extension behavior in VS Code settings:

{
  "tabula.autoExecution": true, // Enable/disable auto-execution on save
  "tabula.executablePath": "tabula", // Path to tabula executable
  "tabula.autoFormat": true // Enable/disable auto-format output (-a flag)
}

Setting the Tabula Path:

By default, the extension uses tabula from your system PATH. If you need to specify a different location:

  1. Open VS Code Settings (Ctrl+, / Cmd+,)
  2. Search for "tabula"
  3. Set Tabula: Executable Path to your custom path

Examples:

  • Default (uses PATH): tabula
  • MacOS/Linux: /usr/local/bin/tabula
  • Custom location: /Users/yourname/bin/tabula
  • Windows: C:\Program Files\tabula\tabula.exe

Auto Format Option:

The tabula.autoFormat setting controls the -a flag passed to Tabula:

  • Enabled (default): Runs tabula -a -u <file> - Auto-formats the output CSV
  • Disabled: Runs tabula -u <file> - No automatic formatting

This is useful if you want to control formatting manually or have custom formatting requirements.

Syntax Highlighting for *.tbl Files

The extension provides rich syntax highlighting for Tabula script files (.tbl):

Supported Elements:

  • Keywords: let, fmt
  • Functions: SUM, AVERAGE, IF, CONCATENATE, etc. (50+ functions)
  • Cell References: A1, B2, AA10
  • Cell Ranges: A1:C10, B2:D5
  • Operators: +, -, *, /, ==, !=, <, >, &&, ||
  • Numbers: 42, 3.14
  • Strings: "text", 'text'
  • Comments: // line comment, /* block comment */

Troubleshooting

"Tabula command not found"

Make sure Tabula is installed and accessible:

Option 1: Add to PATH

which tabula
tabula -v

Option 2: Set custom path in settings

  1. Open VS Code Settings (Ctrl+, / Cmd+,)
  2. Search for "tabula executable"
  3. Set the full path to your tabula binary:
  • macOS/Linux: /usr/local/bin/tabula
  • Windows: C:\path\to\tabula.exe

Auto-execution not working

  1. Check if auto-execute is enabled:
  • Open Command Palette
  • Run "Tabula: Toggle Auto-Execute on Save"
  • Ensure it says "enabled"
  1. Check VS Code settings:
{
  "tabula.autoExecution": true
}

Changes not appearing

Try manually reloading the file:

  • Close and reopen the CSV file
  • Or use "File: Revert File" command

Development

Building

cd plugins/tabula.vscode
npm install
npm run compile

Recommended Companion Extensions

For a better CSV editing experience, do recommend installing a CSV formatting extension: This extension provides:

  • 📊 Table view - View CSV files in a formatted table
  • 🎨 Column highlighting - Color-coded columns for better readability
  • 🔍 Filtering & sorting - Interactive data manipulation
  • ✏️ Cell editing - Edit CSV data directly in table view

Why use both?

  • CSV Extension: For viewing and editing CSV data in a nice table format
  • Tabula Extension: For running transformations and scripts on CSV files

These extensions work great together! View your CSV in table mode, make changes, save, and watch Tabula automatically process it.

CSV Extension by ReprEng

If for some reason you don't want to use this extension you might use Run On Save plugin , and following configuration to execute Tabula on file save.

{
  "emeraldwalk.runonsave": {
    "commands": [
      {
        "match": ".csv",
        "cmd": "~/.local/bin/tabula -a -u ${file}"
      },
      {
        "match": ".md",
        "cmd": "~/.local/bin/tabula -a -m -u ${file}"
      }
    ]
  }
}

Links

  • Tabula Website
  • Tabula Documentation
  • GitHub Repository
  • Report Issues

License

GNU General Public License v3.0

Support

If you find this plugin useful, consider:

  • ⭐ Starring the GitHub repository
  • 🐛 Reporting issues or suggesting features
  • 📖 Contributing to the documentation
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft