tmux-copycat icon indicating copy to clipboard operation
tmux-copycat copied to clipboard

Issue with tmux-copycat Plugin: <prefix> + Ctrl + F Selects Directories Instead of Files

Open chan15 opened this issue 6 months ago • 0 comments

Here is my tmux configuration:

# ~/.tmux.conf
set -g default-terminal "xterm"
setw -g mode-keys vi
set -g pane-border-status top

# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'dracula/tmux'
set -g @dracula-plugins "git cpu-usage ram-usage time"
set -g @dracula-show-powerline true
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'tmux-plugins/tmux-copycat'

# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '/tools/tmux/plugins/tpm/tpm'
run-shell '/tools/tmux/plugins/tmux-pain-control/pain_control.tmux'
run-shell '/tools/tmux/plugins/tmux-sensible/sensible.tmux'
run-shell '/tools/tmux/plugins/tmux-copycat/copycat.tmux'

When I press <prefix> + Ctrl + F, it always selects directories instead of files.

chan15 avatar May 14 '25 03:05 chan15