Skip to content
Merged
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.6.8] - 2026-05-07

### Fixed
- `zsh/.zshrc`: gate `fzf-tab` tmux popup mode (`fzf-command ftb-tmux-popup`)
behind a runtime tmux version check (`>= 3.2`). On hosts with tmux < 3.2
(e.g. Ubuntu 20.04 system tmux 3.0a) the `ftb-tmux-popup` script called
`tmux popup` which does not exist, producing an `unknown command: popup`
error on every TAB completion. The guard falls back to inline fzf silently.

## [1.6.7] - 2026-05-07

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.7
1.6.8
4 changes: 4 additions & 0 deletions zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ zstyle ':completion:*' menu no
zstyle ':fzf-tab:complete:cd:*' fzf-preview 'eza --color=always -1 $realpath 2>/dev/null || ls --color=always -1 $realpath 2>/dev/null'
zstyle ':fzf-tab:*' switch-group '<' '>'
zstyle ':fzf-tab:*' popup-min-size 30 8
# display-popup requires tmux >= 3.2; fall back to inline fzf on older hosts
if [[ -n "$TMUX_PANE" ]] && tmux -V 2>/dev/null | awk '{exit !($2+0 >= 3.2)}'; then
zstyle ':fzf-tab:*' fzf-command ftb-tmux-popup
fi

# ── Aliases ───────────────────────────────────────────────────────────────────
# fd: search everything including gitignored and hidden by default
Expand Down
Loading