mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 07:02:05 +08:00
docs: call the CHANGELOG "release notes"
This commit is contained in:
parent
42d9f33e16
commit
39230978b3
|
@ -222,7 +222,7 @@ def get_command_description(path, name):
|
||||||
man_pages = [
|
man_pages = [
|
||||||
(master_doc, "fish-doc", "fish-shell Documentation", [author], 1),
|
(master_doc, "fish-doc", "fish-shell Documentation", [author], 1),
|
||||||
("tutorial", "fish-tutorial", "fish-shell tutorial", [author], 1),
|
("tutorial", "fish-tutorial", "fish-shell tutorial", [author], 1),
|
||||||
("CHANGELOG", "fish-changelog", "fish-shell changelog", [author], 1),
|
("relnotes", "fish-releasenotes", "fish-shell release notes", [author], 1),
|
||||||
("completions", "fish-completions", "Writing fish completions", [author], 1),
|
("completions", "fish-completions", "Writing fish completions", [author], 1),
|
||||||
(
|
(
|
||||||
"fish_for_bash_users",
|
"fish_for_bash_users",
|
||||||
|
|
|
@ -2118,5 +2118,5 @@ Other help pages
|
||||||
completions
|
completions
|
||||||
faq
|
faq
|
||||||
license
|
license
|
||||||
CHANGELOG
|
relnotes
|
||||||
fish_for_bash_users
|
fish_for_bash_users
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
CHANGELOG
|
Release notes
|
||||||
#########
|
#############
|
||||||
|
|
||||||
.. include:: ../CHANGELOG.rst
|
.. include:: ../CHANGELOG.rst
|
|
@ -101,7 +101,7 @@ complete -c help -x -a tut-why_fish -d 'Why fish?'
|
||||||
complete -c help -x -a tut-wildcards -d Wildcards
|
complete -c help -x -a tut-wildcards -d Wildcards
|
||||||
|
|
||||||
# Other pages
|
# Other pages
|
||||||
complete -c help -x -a changelog -d "Fish's CHANGELOG"
|
complete -c help -x -a releasenotes -d "Fish's release notes"
|
||||||
complete -c help -x -a completions -d "How to write completions"
|
complete -c help -x -a completions -d "How to write completions"
|
||||||
complete -c help -x -a faq -d "Frequently Asked Questions"
|
complete -c help -x -a faq -d "Frequently Asked Questions"
|
||||||
complete -c help -x -a fish-for-bash-users -d "Differences from bash"
|
complete -c help -x -a fish-for-bash-users -d "Differences from bash"
|
||||||
|
|
|
@ -128,8 +128,8 @@ function help --description 'Show help for the fish shell'
|
||||||
set fish_help_page "tutorial.html#"(string sub -s 5 -- $fish_help_item | string replace -a -- _ -)
|
set fish_help_page "tutorial.html#"(string sub -s 5 -- $fish_help_item | string replace -a -- _ -)
|
||||||
case tutorial
|
case tutorial
|
||||||
set fish_help_page "tutorial.html"
|
set fish_help_page "tutorial.html"
|
||||||
case changelog
|
case releasenotes
|
||||||
set fish_help_page changelog.html
|
set fish_help_page relnotes.html
|
||||||
case completions
|
case completions
|
||||||
set fish_help_page completions.html
|
set fish_help_page completions.html
|
||||||
case faq
|
case faq
|
||||||
|
|
Loading…
Reference in New Issue
Block a user