From cf4f8ae929f05f9a794bd329de3599918dc95aab Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Tue, 2 Feb 2021 18:44:44 +0100 Subject: [PATCH] Revert "Color "ip" output if available" This reverts commit abb59a6ec925ca3430433d0df619f9b7c06269c2. This is still buffered if piped to another function, like with the default `grep`. See #5340, #5356. --- share/functions/ip.fish | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 share/functions/ip.fish diff --git a/share/functions/ip.fish b/share/functions/ip.fish deleted file mode 100644 index 6c94c3e52..000000000 --- a/share/functions/ip.fish +++ /dev/null @@ -1,9 +0,0 @@ -# -# Enable ip colored output if available -# - -if command -sq ip; and command ip -color=auto link >/dev/null 2>/dev/null - function ip - command ip -color=auto $argv - end -end