mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-15 09:33:06 +08:00
14 lines
235 B
Fish
14 lines
235 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
|