2007-10-06 18:32:31 +08:00
|
|
|
function __fish_paginate -d "Paginate the current command using the users default pager"
|
|
|
|
|
2016-11-28 13:27:22 +08:00
|
|
|
set -l cmd less
|
|
|
|
if set -q PAGER
|
2019-12-01 19:03:44 +08:00
|
|
|
echo $PAGER | read -at cmd
|
2016-11-28 13:27:22 +08:00
|
|
|
end
|
2007-10-06 18:32:31 +08:00
|
|
|
|
2019-10-02 01:10:01 +08:00
|
|
|
if test -z (commandline -j | string join '')
|
2020-09-17 05:20:31 +08:00
|
|
|
commandline -i $history[1]
|
2017-10-26 07:13:42 +08:00
|
|
|
end
|
|
|
|
|
2020-09-17 05:20:31 +08:00
|
|
|
if commandline -j | not string match -q -r "$cmd *\$"
|
2019-10-30 03:48:10 +08:00
|
|
|
commandline -aj " &| $cmd;"
|
2016-11-28 13:27:22 +08:00
|
|
|
end
|
2007-10-06 18:32:31 +08:00
|
|
|
|
|
|
|
end
|