git: 266aa8a0ea - main - Porter's handbook: Added and clarified full path names
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 29 Aug 2023 19:29:32 UTC
The branch main has been updated by carlavilla:
URL: https://cgit.FreeBSD.org/doc/commit/?id=266aa8a0eae595536861939ae22aee9e4803c47d
commit 266aa8a0eae595536861939ae22aee9e4803c47d
Author: Sergio Carlavilla Delgado <carlavilla@FreeBSD.org>
AuthorDate: 2023-08-29 19:27:52 +0000
Commit: Sergio Carlavilla Delgado <carlavilla@FreeBSD.org>
CommitDate: 2023-08-29 19:27:52 +0000
Porter's handbook: Added and clarified full path names
Converted to AsciiDoc by carlavilla@
PR: 225008
Differential Revision: https://reviews.freebsd.org/D16697
Patch by: yuri@
Reviewed by: fernape@, mat@, 0mp@
---
.../content/en/books/porters-handbook/special/_index.adoc | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/documentation/content/en/books/porters-handbook/special/_index.adoc b/documentation/content/en/books/porters-handbook/special/_index.adoc
index 4aafc5d589..564a9d3122 100644
--- a/documentation/content/en/books/porters-handbook/special/_index.adoc
+++ b/documentation/content/en/books/porters-handbook/special/_index.adoc
@@ -4990,17 +4990,20 @@ It is not necessary to make an option for it.
If an option is used, though, always enable it in `OPTIONS_DEFAULT`.
[[shell-completion-paths]]
-.Shell completion file paths
-[cols="1,1", frame="none"]
+.Full shell completion file names
+[cols="1,1,1", frame="none"]
|===
|`bash`
-|[.filename]#${PREFIX}/etc/bash_completion.d#
+|[.filename]#${PREFIX}/etc/bash_completion.d# or [.filename]#${PREFIX}/share/bash-completion/completions#
+|(any unique file names in one of these folders)
|`fish`
-|[.filename]#${PREFIX}/share/fish/vendor_completions.d#
+|[.filename]#${PREFIX}/share/fish/completions/${PORTNAME}.fish#
+|
|`zsh`
-|[.filename]#${PREFIX}/share/zsh/site-functions#
+|[.filename]#${PREFIX}/share/zsh/site-functions/_${PORTNAME}#
+|
|===
Do not register any dependencies on the shells themselves.