mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-30 01:11:14 -03:00
8 lines
212 B
Fish
8 lines
212 B
Fish
# localization: skip(private)
|
|
function __fish_paginate -d "Paginate the current command using the users default pager"
|
|
set -l cmd (__fish_anypager)
|
|
or return 1
|
|
|
|
fish_commandline_append " &| $cmd"
|
|
end
|