Skip to content

Commit b908f7a

Browse files
committed
0.68.0
1 parent 1a50a3c commit b908f7a

File tree

6 files changed

+12
-19
lines changed

6 files changed

+12
-19
lines changed

CHANGELOG.md

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@ CHANGELOG
44
0.68.0
55
------
66
- Implemented word wrapping in the list section
7-
- Added `--wrap=word` (or `--wrap-word`) option and `toggle-wrap-word` action
8-
for word-level line wrapping in the list section
9-
- Changed default binding of `ctrl-/` and `alt-/` from `toggle-wrap` to
10-
`toggle-wrap-word`
7+
- Added `--wrap=word` (or `--wrap-word`) option and `toggle-wrap-word` action for word-level line wrapping in the list section
8+
- Changed default binding of `ctrl-/` and `alt-/` from `toggle-wrap` to `toggle-wrap-word`
119
```sh
1210
fzf --wrap=word
1311
```
@@ -19,8 +17,7 @@ CHANGELOG
1917
--preview-window wrap-word \
2018
--bind space:toggle-preview-wrap-word
2119
```
22-
- Added support for underline style variants in `--color`:
23-
`underline-double`, `underline-curly`, `underline-dotted`, `underline-dashed`
20+
- Added support for underline style variants in `--color`: `underline-double`, `underline-curly`, `underline-dotted`, `underline-dashed`
2421
```sh
2522
fzf --color 'fg:underline-curly,current-fg:underline-dashed'
2623
```
@@ -32,18 +29,14 @@ CHANGELOG
3229
# In the preview window
3330
fzf --preview "printf '\e[4:3;58;2;255;0;0mRed curly underline\e[0m\n'"
3431
```
35-
- Added `--preview-wrap-sign` to set a different wrap indicator for the preview
36-
window
32+
- Added `--preview-wrap-sign` to set a different wrap indicator for the preview window
3733
- Added `alt-gutter` color option (#4602) (@hedgieinsocks)
38-
- Added `$FZF_WRAP` environment variable to child processes (`char` or `word`
39-
when wrapping is enabled) (#4672) (@bitraid)
34+
- Added `$FZF_WRAP` environment variable to child processes (`char` or `word` when wrapping is enabled) (#4672) (@bitraid)
4035
- fish: Improved command history (CTRL-R) (#4672) (@bitraid)
4136
- Enabled syntax highlighting in the list on fish 4.3.3+
42-
- Added syntax-highlighted preview window that auto-shows for long or
43-
multi-line commands
37+
- Added syntax-highlighted preview window that auto-shows for long or multi-line commands
4438
- Added `ALT-ENTER` to reformat and insert selected commands
45-
- Improved handling of bulk deletion of selected history entries
46-
(`SHIFT-DELETE`)
39+
- Improved handling of bulk deletion of selected history entries (`SHIFT-DELETE`)
4740
- Added fish completion support (#4605) (@lalvarezt)
4841
- zsh: Handle multi-line history selection (#4595) (@LangLangBart)
4942
- Bug fixes

install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -u
44

5-
version=0.67.0
5+
version=0.68.0
66
auto_completion=
77
key_bindings=
88
update_config=2

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$version="0.67.0"
1+
$version="0.68.0"
22

33
$fzf_base=Split-Path -Parent $MyInvocation.MyCommand.Definition
44

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/junegunn/fzf/src/protector"
1212
)
1313

14-
var version = "0.67"
14+
var version = "0.68"
1515
var revision = "devel"
1616

1717
//go:embed shell/key-bindings.bash

man/man1/fzf-tmux.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
THE SOFTWARE.
2323
..
24-
.TH fzf\-tmux 1 "Nov 2025" "fzf 0.67.0" "fzf\-tmux - open fzf in tmux split pane"
24+
.TH fzf\-tmux 1 "Feb 2026" "fzf 0.68.0" "fzf\-tmux - open fzf in tmux split pane"
2525

2626
.SH NAME
2727
fzf\-tmux - open fzf in tmux split pane

man/man1/fzf.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
THE SOFTWARE.
2323
..
24-
.TH fzf 1 "Nov 2025" "fzf 0.67.0" "fzf - a command-line fuzzy finder"
24+
.TH fzf 1 "Feb 2026" "fzf 0.68.0" "fzf - a command-line fuzzy finder"
2525

2626
.SH NAME
2727
fzf - a command-line fuzzy finder

0 commit comments

Comments
 (0)