From 71574eeb7219398084511f34c1fe93587a4621b7 Mon Sep 17 00:00:00 2001 From: punkfairie <23287005+punkfairie@users.noreply.github.com> Date: Sat, 10 Feb 2024 19:48:38 -0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Use=20fzf-tmux=20for=20fm=20functio?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cli/.config/fish/functions/fm.fish.symlink | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/.config/fish/functions/fm.fish.symlink b/cli/.config/fish/functions/fm.fish.symlink index 5708167..d43bf9d 100644 --- a/cli/.config/fish/functions/fm.fish.symlink +++ b/cli/.config/fish/functions/fm.fish.symlink @@ -1,5 +1,5 @@ #!/usr/bin/env fish function fm --wraps=fzf -d "Use fzf as a simple file viewer" - find . -type d | fzf --preview='eza --color=always -T {} | head -n 50' + find . -type d | fzf-tmux -p 90%,95% --preview='eza --color=always -T {} | head -n 50' end