From deefdaec57a7948699ea2c1c7001a4b947a9aa5f Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Tue, 29 Oct 2019 20:48:10 +0100 Subject: [PATCH] Use the new &| in __fish_paginate --- share/functions/__fish_paginate.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/__fish_paginate.fish b/share/functions/__fish_paginate.fish index ae7ae896f..f7c888a37 100644 --- a/share/functions/__fish_paginate.fish +++ b/share/functions/__fish_paginate.fish @@ -11,7 +11,7 @@ function __fish_paginate -d "Paginate the current command using the users defaul if commandline -j | string match -q -r -v "$cmd *\$" - commandline -aj " 2>&1 | $cmd;" + commandline -aj " &| $cmd;" end end