tree-sitter-batch
Windows Batch/CMD grammar for tree-sitter.
Parses .bat and .cmd files into a concrete syntax tree for syntax highlighting, code navigation, and analysis.
Features
- Control flow —
IF/ELSE(EXIST, DEFINED, ERRORLEVEL, comparison with NOT),FOR(/D /R /L /F),GOTO,CALL - Variables —
SET(plain,/Aarithmetic,/Pprompt),%VAR%,!VAR!,%%i,%~dp0,%VAR:old=new% - Operators — pipes
|, redirects>>>2>2>&1, conditional&&|| - Structure — labels
:name, commentsREM::, parenthesized blocks,@ECHO OFF - Scope —
SETLOCAL/ENDLOCALwithENABLEDELAYEDEXPANSION - Case-insensitive — all keywords match regardless of casing
Example
@echo off
REM Build script
setlocal enabledelayedexpansion
set "PROJECT=MyApp"
set /a VERSION=1
if not exist "dist" (
mkdir dist
)
for %%f in (src\*.txt) do (
copy "%%f" "dist\"
)
if %ERRORLEVEL% == 0 (
echo Build successful
) else (
echo Build failed
exit /b 1
)
exit /b 0
Parsed tree:
(program
(echo_off)
(comment)
(setlocal_stmt)
(variable_assignment)
(variable_assignment)
(if_stmt
(string)
(parenthesized
(cmd (command_name) (argument_list (argument_value)))))
(for_stmt
(for_variable)
(for_set)
(parenthesized
(cmd (command_name) (argument_list (string) (string)))))
(if_stmt
(variable_reference)
(comparison_op)
(integer)
(parenthesized
(cmd (command_name) (argument_list (argument_value) (argument_value))))
(else_clause
(parenthesized
(cmd (command_name) (argument_list (argument_value) (argument_value)))
(exit_stmt (integer)))))
(exit_stmt (integer)))
Installation
npm
Cargo
PyPI
Go
import tree_sitter_batch "github.com/wharflab/tree-sitter-batch/bindings/go"
Usage
Node.js
import Parser from "tree-sitter";
import Batch from "tree-sitter-batch";
const parser = ;
parser.;
const tree = parser.;
console.log;
Rust
let mut parser = new;
let language = LANGUAGE;
parser.set_language.unwrap;
let tree = parser.parse.unwrap;
println!;
Python
=
=
Syntax Highlighting
The grammar ships with a queries/highlights.scm file for use in editors that support tree-sitter highlighting (Neovim, Helix, Zed, etc.).
References
- Grammar informed by Blinter batch file linter (159 rules)
- SS64 CMD reference
- Microsoft CMD documentation