Back to rankings

Wilfred/difftastic

Rustdifftastic.wilfred.me.uk

a structural diff that understands syntax 🟥🟩

difftree-sitter
Star Growth
Stars
25.7k
Forks
500
Weekly Growth
Issues
247
10k20k
Jan 2019Jul 2021Jan 2024Jul 2026
Artifactscrates.iocargo add difftastic
README

it's difftastic!
English manual Chinese manual crates.io codecov.io

Difftastic is a structural diff tool that compares files based on their syntax.

For installation instructions, see Installation in the manual.

Examples

Screenshot of difftastic and Rust

^ Difftastic understands exactly which pieces of syntax have changed, and can highlight them in context.

Screenshot of difftastic and HTML

^ Difftastic understands when whitespace matters, and when it's just an indentation change.

Screenshot of difftastic and JS

^ Difftastic is not line-oriented. If you reformat your code and it's now split over multiple lines, difftastic will show you what's actually changed.

Screenshot of difftastic and git

^ Difftastic is compatible with git (see the configuration instructions), as well as many other version control systems.

Languages Supported

Difftastic supports over 30 programming languages, see the manual for the full list.

If a file has an unrecognised extension, difftastic uses a line-oriented diff with word highlighting.

Known Issues

Performance. Difftastic scales relatively poorly on files with a large number of changes, and can use a lot of memory.

Display. Difftastic has a side-by-side display which usually works well, but can be confusing.

Robustness. Difftastic regularly has releases that fix crashes.

Non-goals

Patching. Difftastic output is intended for human consumption, and it does not generate patches that you can apply later. Use diff if you need a patch.

(Patch files are also line-oriented, which is too limited for difftastic. Difftastic might find additions and removals on the same line, and it tracks the relationship between line numbers in the old and new file.)

Merging. AST merging is a hard problem that difftastic does not address. You might be interested in the mergiraf tool ("merge giraffe"), which does do AST merging.

FAQ

Can I use difftastic with git?

You can! The difftastic manual includes instructions for git usage. You can also use it with mercurial.

If you're an Emacs user, check out this blog post showing one way to use difftastic with magit, as well as difftastic.el.

Does difftastic integrate with my favourite tool?

Probably not. Difftastic is young. Consider writing a plugin for your favourite tool, and I will link it in the README!

What about parse errors?

By default, difftastic falls back to a line-oriented diff whenever parse errors are encountered.

This is a conservative choice to ensure that difftastic never claims that two syntactically different files are the same.

Parse errors can occur if the file uses language features that the parser does not understand, if the language relies on a preprocessor before parsing (e.g. C++), or if the file has genuine syntactic mistakes.

In practice, difftastic virtually always produces a good result when there are a few minor parse errors. Consider allowing a small number of parse errors when using difftastic.

$ export DFT_PARSE_ERROR_LIMIT=20
$ difft foo1.c foo2.c

Can difftastic help me with merge conflicts?

Yes! As of version 0.50 (released 2023-08-16), difftastic understands merge conflict markers (i.e. <<<<<<<, ======= and >>>>>>>).

Pass your file with conflicts as a single argument to difftastic. Difftastic will construct the two conflicting files and diff those.

$ difft file_with_conflicts.js

Can difftastic do merges?

No. AST merging is a hard problem that difftastic does not address.

AST diffing is a lossy process from the perspective of a text diff. Difftastic will ignore whitespace that isn't syntactically significant, but merging requires tracking whitespace.

The mergiraf tool does offer merges based on a tree-sitter AST however.

Can difftastic ignore reordering?

No. Difftastic always considers order to be important, so diffing e.g. set(1, 2) and set(2, 1) will show changes.

If you're diffing JSON, consider sorting the keys before passing them to difftastic.

$ difft <(jq --sort-keys < file_1.json) <(jq --sort-keys < file_2.json)

See also Tricky Cases: Unordered Data Types in the manual.

Can I use difftastic to check for syntactic changes without diffing?

Yes. Difftastic can check if the two files have the same AST, without calculating a diff. This is much faster than normal diffing, and useful for building tools that check for changes.

For example:

$ difft --check-only --exit-code before.js after.js

This will set the exit code to 0 if there are no syntactic changes, or 1 if there are changes found.

Why aren't colours appearing in my terminal?

Difftastic uses ANSI bright colours by default, but some terminal themes show bright colours as grey. Solarized is a popular theme that does this.

If you're a Solarized user, use export DFT_BACKGROUND=light to disable bright colours, or try a different terminal colour scheme.

How does it work?

Difftastic treats structural diffing as a graph problem, and uses Dijkstra's algorithm.

My blog post describes the design, and there is also an internals section in the manual.

Translation

License

Difftastic is open source under the MIT license, see LICENSE for more details.

This repository also includes tree-sitter parsers by other authors in the vendored_parsers/ directory. These are a mix of the MIT license and the Apache license. See vendored_parsers/*/LICENSE for more details.

Files in sample_files/ are also under the MIT license unless stated otherwise in their headers.

Related repositories
dandavison/delta

A syntax-highlighting pager for git, diff, grep, rg --json, and blame output

Rustcrates.ioMIT Licensegitdiff
dandavison.github.io/delta/
31.5k552
so-fancy/diff-so-fancy

Make your diffs human readable for improved code quality and faster defect detection. :tada:

PerlMIT Licensegitdiff
18.1k346
answershuto/learnVue

:octocat:Vue.js 源码解析

JavaScriptnpmvuevue-template
github.com/answershuto/learnVue
12.7k2.5k
ds300/patch-package

Fix broken node modules instantly 🏃🏽‍♀️💨

TypeScriptnpmMIT Licensejavascriptjavascript-tools
11.2k325
WinMerge/winmerge

WinMerge is an Open Source differencing and merging tool for Windows. WinMerge can compare both folders and files, presenting differences in a visual text format that is easy to understand and handle.

C++GNU General Public License v2.0c-plus-pluswinmerge
winmerge.org
9k994
airblade/vim-gitgutter

A Vim plugin which shows git diff markers in the sign column and stages/previews/undoes hunks and partial hunks.

Vim ScriptMIT Licensevimgit
8.5k298
google/diff-match-patch

Diff Match Patch is a high-performance library in multiple languages that manipulates plain text.

PythonPyPIApache License 2.0differencediff
8.1k1.2k
modem-dev/hunk

Review-first terminal diff viewer for agentic coders

TypeScriptnpmMIT Licenseclicode-review
hunk.dev
7.5k211
mapbox/pixelmatch

The smallest, simplest and fastest JavaScript pixel-level image comparison library

JavaScriptnpmISC Licenseimage-comparisontesting-tools
6.9k324
sindrets/diffview.nvim

Single tabpage interface for easily cycling through diffs for all modified files for any git rev.

LuaOtherneovimneovim-plugin
5.7k205
benjamine/jsondiffpatch

Diff & patch JavaScript objects

TypeScriptnpmMIT Licensejsondiff
jsondiffpatch.com
5.3k495
shinnytech/tqsdk-python

天勤量化开发包, 期货量化, 实时行情/历史数据/实盘交易

PythonPyPIApache License 2.0futuresdiff
doc.shinnytech.com/tqsdk/latest
4.9k767