I'm getting some extra blank lines which I guess are not intended?
fisherman 2.12.0
fish 2.4.0 / 2.5.0
$ fisher help
FISHERMAN(1) fisherman FISHERMAN(1)
NAME
fisherman - fish plugin manager
SYNOPSIS
fisher [(install | update | ls[-remote] | rm | help) PLUGINS]
DESCRIPTION
A plugin manager for fish.
OPTIONS
o -v, --version: Show version information.
o -h, --help: Show usage help. Use the long form to display this page.
o -q, --quiet: Enable quiet mode. Use to suppress output.
USAGE
Install a plugin.
fisher mono
Install some plugins.
fisher z fzf edc/bass omf/tab
Install a gist.
fisher https://gist.github.com/username/1f40e1c6e0551b2666b2
Install a local directory.
fisher ~/my/plugin
Edit your fishfile and run fisher to commit changes.
$EDITOR ~/.config/fish/fishfile
fisher
Show everything you've installed.
fisher ls
@ plugin # a local directory
* mono # the current prompt
bass
fzf
thefuck
z
Show everything that's available.
fisher ls-remote
Update everything.
fisher up
Update some plugins.
fisher up bass z fzf
Remove plugins.
fisher rm thefuck
Remove all the plugins.
fisher ls | fisher rm
Get help.
fisher help z
FAQ
What is the required fish version?
>=2.2.0.
For snippet support, upgrade to >=2.3.0 or append the following code to your ~/.config/fish/config.fish.
for file in ~/.config/fish/conf.d/*.fish
source $file
end
Is fisherman compatible with oh-my-fish themes and plugins?
Yes.
Where does fisherman put stuff?
The cache and configuration go in ~/.cache/fisherman and ~/.config/fisherman respectively.
The fishfile is saved to ~/.config/fish/fishfile.
What is a fishfile and how do I use it?
The fishfile ~/.config/fish/fishfile lists what plugins you've installed.
This file is updated automatically as you install / remove plugins. You can also edit this file and run fisher to commit changes.
This mechanism only installs plugins and missing dependencies. To remove plugins, use fisher rm.
What is a plugin?
A plugin is:
1. a directory or git repo with one or more .fish functions either at the root level of the project or inside a functions directory
2. a theme or prompt, i.e, a fish_prompt.fish, fish_right_prompt.fish or both files
3. a snippet, i.e, one or more .fish files inside a directory named conf.d, evaluated by fish at the start of the session
How can I list plugins as dependencies to my plugin?
Create a new fishfile file at the root level of your project and write in the plugins.
May 2016 FISHERMAN(1)
I couldn't repro this. What Linux are you using?

fisherman 2.12.0
fish 2.5.0
macOS 10.11.6
@laughedelic Can you check too?
@jbucaran I have the same as on your screenshot. I'm also on OS X 10.11.6. checked in iTerm2 and Terminal 馃憣
Found the problem: set -x PAGER cat
This was an experiment to see how necessary less is in GUI terminals with usable and long scroll support.
Most helpful comment
Found the problem:
set -x PAGER catThis was an experiment to see how necessary
lessis in GUI terminals with usable and long scroll support.