Back to Features

Visual Diff Viewer

See every change before it lands

Review AI-generated code with a beautiful diff viewer. Syntax highlighting, file-by-file navigation, and inline comments make code review a breeze.

Syntax-Highlighted Diffs

Code changes are displayed with full syntax highlighting for your language. Additions in green, deletions in red, with context lines for easy understanding.

  • Language-aware syntax highlighting
  • Side-by-side or unified view
  • Context lines for understanding
  • Collapsible unchanged sections
src/auth.rs+12-3
10fn authenticate(user: &User) {
11- validate(user);
11+ if let Err(e) = validate(user) {
12+ return Err(AuthError::ValidationFailed(e));
13+ }

File-by-File Navigation

When Claude modifies multiple files, navigate through them easily. See which files changed, how many lines were added or removed, and jump directly to any file.

  • File tree showing all changes
  • Change statistics per file
  • Quick navigation between files
  • Filter by file type or status
src/auth.rs+12 -3
src/middleware.rsnew
tests/auth_test.rs+45 -0
src/old_auth.rsdeleted

Use Cases

Code Review

Understand exactly what Claude changed before accepting modifications.

Learning

See how AI solves problems by studying the diffs it generates.

Quality Control

Catch issues before they reach your main branch.

Documentation

Add inline comments to explain changes for your team.

Review with Confidence

Download Sonars and take control of your AI-generated code.