Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Improved diffing performance, particularly when diffing directories.

Removed support for SCSS (upstream parser is no longer maintained).

### Command Line Interface

`--context` can now be set with the short flag `-c`.

## 0.69 (released 30th April 2026)

## Diffing
Expand Down
1 change: 1 addition & 0 deletions src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ fn app() -> clap::Command {
.arg(
Arg::new("context")
.long("context")
.short('c')
.value_name("LINES")
.action(ArgAction::Set)
.long_help("The number of contextual lines to show around changed lines.")
Expand Down
Loading