From caf1bbfc97a2f54b6575d14ad56bb254bc926eaa Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Tue, 22 Jun 2021 23:51:31 +0200 Subject: [PATCH] __fish_paginate: do not append a semicolon I almost always use this on the last/only job in a commandline, so the semicolon is usually not needed. We have always added it but I prefer not dropping it: this feels cleaner because it's what you'd type without the shortcut. --- 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 219046706..55cd35391 100644 --- a/share/functions/__fish_paginate.fish +++ b/share/functions/__fish_paginate.fish @@ -10,7 +10,7 @@ function __fish_paginate -d "Paginate the current command using the users defaul end if commandline -j | not string match -q -r "$cmd *\$" - commandline -aj " &| $cmd;" + commandline -aj " &| $cmd" end end