Skip to content

Commit 9ab5c73

Browse files
committed
release: v1.7.1
1 parent d149477 commit 9ab5c73

File tree

7 files changed

+20
-14
lines changed

7 files changed

+20
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.7.1] - 2026-01-25
9+
10+
### 🐛 Bug Fixes
11+
12+
- Y cursor pos in reverse mode (closes #931)
13+
814
## [1.7.0] - 2026-01-25
915

1016
### 🚀 Features

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "skim"
3-
version = "1.7.0"
3+
version = "1.7.1"
44
authors = ["Loric ANDRE", "Zhang Jinzhou <lotabout@gmail.com>"]
55
description = "Fuzzy Finder in rust!"
66
documentation = "https://docs.rs/skim"

man/man1/sk.1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.ie \n(.g .ds Aq \(aq
22
.el .ds Aq '
3-
.TH sk 1 "sk 1.7.0"
3+
.TH sk 1 "sk 1.7.1"
44
.ie \n(.g .ds Aq \(aq
55
.el .ds Aq '
66
.SH NAME
@@ -451,10 +451,10 @@ Print the header as the first line (after print\-score)
451451
Print the ANSI codes, making the output exactly match the input even when \-\-ansi is on
452452
.TP
453453
\fB\-1\fR, \fB\-\-select\-1\fR
454-
Automatically select the match if there is only one
454+
Do not enter the TUI if the query passed in \-q matches only one item and return it
455455
.TP
456456
\fB\-0\fR, \fB\-\-exit\-0\fR
457-
Automatically exit when no match is left
457+
Do not enter the TUI if the query passed in \-q does not match any item
458458
.TP
459459
\fB\-\-sync\fR
460460
Synchronous search for multi\-staged filtering
@@ -982,4 +982,4 @@ When using `sk \-\-remote`, pipe in action chains (see the KEYBINDS section), fo
982982
.ie \n(.g .ds Aq \(aq
983983
.el .ds Aq '
984984
.SH VERSION
985-
v1.7.0
985+
v1.7.1

shell/completion.fish

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ complete -c sk -l print-cmd -d 'Print the command as the first line (after print
108108
complete -c sk -l print-score -d 'Print the score after each item'
109109
complete -c sk -l print-header -d 'Print the header as the first line (after print-score)'
110110
complete -c sk -l no-strip-ansi -d 'Print the ANSI codes, making the output exactly match the input even when --ansi is on'
111-
complete -c sk -s 1 -l select-1 -d 'Automatically select the match if there is only one'
112-
complete -c sk -s 0 -l exit-0 -d 'Automatically exit when no match is left'
111+
complete -c sk -s 1 -l select-1 -d 'Do not enter the TUI if the query passed in -q matches only one item and return it'
112+
complete -c sk -s 0 -l exit-0 -d 'Do not enter the TUI if the query passed in -q does not match any item'
113113
complete -c sk -l sync -d 'Synchronous search for multi-staged filtering'
114114
complete -c sk -l shell-bindings -d 'Generate shell key bindings - only for bash, zsh and fish'
115115
complete -c sk -l man -d 'Generate man page and output it to stdout'

shell/completion.nu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ module completions {
9393
--print-score # Print the score after each item
9494
--print-header # Print the header as the first line (after print-score)
9595
--no-strip-ansi # Print the ANSI codes, making the output exactly match the input even when --ansi is on
96-
--select-1(-1) # Automatically select the match if there is only one
97-
--exit-0(-0) # Automatically exit when no match is left
96+
--select-1(-1) # Do not enter the TUI if the query passed in -q matches only one item and return it
97+
--exit-0(-0) # Do not enter the TUI if the query passed in -q does not match any item
9898
--sync # Synchronous search for multi-staged filtering
9999
--pre-select-n: string # Pre-select the first n items in multi-selection mode
100100
--pre-select-pat: string # Pre-select the matched items in multi-selection mode

shell/completion.zsh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ zsh\:"Zsh"))' \
114114
'--print-score[Print the score after each item]' \
115115
'--print-header[Print the header as the first line (after print-score)]' \
116116
'--no-strip-ansi[Print the ANSI codes, making the output exactly match the input even when --ansi is on]' \
117-
'-1[Automatically select the match if there is only one]' \
118-
'--select-1[Automatically select the match if there is only one]' \
119-
'-0[Automatically exit when no match is left]' \
120-
'--exit-0[Automatically exit when no match is left]' \
117+
'-1[Do not enter the TUI if the query passed in -q matches only one item and return it]' \
118+
'--select-1[Do not enter the TUI if the query passed in -q matches only one item and return it]' \
119+
'-0[Do not enter the TUI if the query passed in -q does not match any item]' \
120+
'--exit-0[Do not enter the TUI if the query passed in -q does not match any item]' \
121121
'--sync[Synchronous search for multi-staged filtering]' \
122122
'--shell-bindings[Generate shell key bindings - only for bash, zsh and fish]' \
123123
'--man[Generate man page and output it to stdout]' \

0 commit comments

Comments
 (0)