-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fish shell man page #5521
Comments
Fish's documentation currently is mostly only available as html, with the exception of builtins - those are also available as man pages (e.g. We should probably add the other things as man pages as well. |
I have a branch that migrates the docs to Sphinx which I'm going to PR for 3.1, so let's not invest too much here now (soon it will be a lot easier). |
To mention other options for consuming docs without leaving the terminal:
P.S. xref #2170 just for manpage relation. |
There is a small issue preventing Sphinx from generating a better man page for the main fish-shell/sphinx_doc_src/conf.py Lines 180 to 184 in 6c05005
This A simple fix would be to either prevent |
This was clearly intended for index, but because it was called "fish" it was overwritten by the "fish" command man page. I also added the tutorial and faq. Both of those might not be *ideal* as man pages (the tutorial makes references to colors that won't show up), but it's better to provide them than not. Hat-tip to @wwared See #5521. [ci skip]
This is now available as |
Currently,
man fish
is very sparse, listing only command line options to thefish
command itself. One can get information about fish itself throughhelp
. Then one could also get information about fish commands, etc... throughman
. However, I find it jarring having tohelp
first to thenman
. Moreover, some commands clash with pretty standard ones like (for example)test
fromcoreutils
.bash
is great on this matter, where I can justman bash
and forget about clunkly web interfaces. I can even use my text editor as aMANPAGER
and not break my workflow (especially in Linux where trackpad support is flimsy). How about getting the full fish manual onman fish
? Likewise, if this is not feasible, do you recommend a way of generating the man pages myself?Thanks
The text was updated successfully, but these errors were encountered: