fish-shell/share/functions/__fish_paginate.fish
liljencrantz 3ca3b6209d Make the Alt-p keybinding respect the PAGER variable
darcs-hash:20071006103231-75c98-59ef22ad49526f52cff8a97d9fac9f003af19213.gz
2007-10-06 20:32:31 +10:00

13 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