From 576ff624d6fbe441f4c5b6a0c724034b78c72ce8 Mon Sep 17 00:00:00 2001 From: Charles Gould Date: Tue, 28 Apr 2020 21:22:22 -0500 Subject: [PATCH] fish: add function for diff-so-fancy --- fish/functions/dsf.fish | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 fish/functions/dsf.fish diff --git a/fish/functions/dsf.fish b/fish/functions/dsf.fish new file mode 100644 index 0000000..e84e62f --- /dev/null +++ b/fish/functions/dsf.fish @@ -0,0 +1,3 @@ +function dsf + command diff -u $argv[1] $argv[2] | diff-so-fancy +end