From f0ab903b46a1c5f4c8c4881029f4e4af314af73d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Mon, 27 Nov 2023 10:04:58 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(fish):=20added=20onefetch=20to?= =?UTF-8?q?=20the=20repos=20function?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/fish/functions/repos.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/fish/functions/repos.fish b/.config/fish/functions/repos.fish index e606ef94..f2fc4029 100644 --- a/.config/fish/functions/repos.fish +++ b/.config/fish/functions/repos.fish @@ -3,7 +3,7 @@ function repos --description 'Open Git directories in ~/Repos with fzf in a new if test -n "$selected_dir" set tab_title (basename "$selected_dir") - set new_tab_cmd "kitty @ set-tab-title \"$tab_title\"; and cd $selected_dir" + set new_tab_cmd "kitty @ set-tab-title \"$tab_title\"; and cd $selected_dir; and onefetch" eval $new_tab_cmd end