From 6ec50d2d4d71514def7e13606f1698a2f4eec8d3 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 26 Feb 2019 10:55:23 -0500 Subject: [PATCH] Fix dt command to use command name #fishshell --- fish/.config/fish/functions/dt.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish/.config/fish/functions/dt.fish b/fish/.config/fish/functions/dt.fish index 34e4942..c760f45 100644 --- a/fish/.config/fish/functions/dt.fish +++ b/fish/.config/fish/functions/dt.fish @@ -1,3 +1,3 @@ function dt - dtach -A /tmp/dtach-$argv $argv + dtach -A /tmp/dtach-$argv[1] $argv end