Skip to content

Commit d811eaf

Browse files
committed
Version 1.1
1 parent c72cd9e commit d811eaf

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 1.1 (Unreleased)
2+
3+
Features:
4+
5+
- Add `-i`/`--show-info` to display selection information
6+
- Add `-0` to use null as input delimiter
7+
- Support Ctrl-G to cancel/exit
8+
9+
Bugfixes:
10+
11+
- Avoid terminal flicker with large outputs
12+
113
## 1.0 (2018-09-23)
214

315
Features:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=1.0
1+
VERSION=1.1
22

33
CPPFLAGS=-DVERSION=\"${VERSION}\" -D_GNU_SOURCE
44
CFLAGS+=-MD -Wall -Wextra -g -std=c99 -O3 -pedantic -Ideps -Werror=vla

fzy.1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH FZY 1 "2018-09-23" "fzy 1.0"
1+
.TH FZY 1 "2025-07-12" "fzy 1.1"
22
.SH NAME
33
fzy \- A fuzzy text selector menu for the terminal.
44
.SH SYNOPSIS
@@ -45,6 +45,10 @@ Non-interactive mode. Print the matches in sorted order for QUERY to stdout.
4545
Read input delimited by ASCII NUL characters.
4646
.
4747
.TP
48+
.BR \-i ", " \-\-show-info
49+
Show selection info line.
50+
.
51+
.TP
4852
.BR \-h ", " \-\-help
4953
Usage help.
5054
.

src/options.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void options_parse(options_t *options, int argc, char *argv[]) {
6363
while ((c = getopt_long(argc, argv, "vhs0e:q:l:t:p:j:i", longopts, NULL)) != -1) {
6464
switch (c) {
6565
case 'v':
66-
printf("%s " VERSION " © 2014-2018 John Hawthorn\n", argv[0]);
66+
printf("%s " VERSION " © 2014-2025 John Hawthorn\n", argv[0]);
6767
exit(EXIT_SUCCESS);
6868
case 's':
6969
options->show_scores = 1;

0 commit comments

Comments
 (0)