fish-shell/share/functions/__fish_paginate.fish
2010-09-18 10:18:26 +08:00

13 lines
234 B
Fish

function __fish_paginate -d "Paginate the current command using the users default pager"
set -l cmd less
if set -q PAGER
set cmd $PAGER
end
if commandline -j|grep -v "$cmd *\$" >/dev/null
commandline -aj "|$cmd;"
end
end