mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
functions/help: Adjust command paths to sphinx
We now build a separate page per-command in cmds/$cmd.html instead of a section in the "commands.html" page. See #5696. [ci skip]
This commit is contained in:
parent
4e7795217d
commit
e2ce63ff62
1 changed files with 2 additions and 2 deletions
|
@ -105,11 +105,11 @@ function help --description 'Show help for the fish shell'
|
|||
|
||||
switch "$fish_help_item"
|
||||
case "."
|
||||
set fish_help_page "commands.html\#source"
|
||||
set fish_help_page "cmds/source.html"
|
||||
case globbing
|
||||
set fish_help_page "index.html\#expand"
|
||||
case (__fish_print_commands)
|
||||
set fish_help_page "commands.html\#$fish_help_item"
|
||||
set fish_help_page "cmds/$fish_help_item.html"
|
||||
case $help_topics
|
||||
set fish_help_page "index.html\#$fish_help_item"
|
||||
case 'tut_*'
|
||||
|
|
Loading…
Reference in a new issue