aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergio Carlavilla Delgado <carlavilla@FreeBSD.org>2023-08-29 19:27:52 +0000
committerSergio Carlavilla Delgado <carlavilla@FreeBSD.org>2023-08-29 19:27:52 +0000
commit266aa8a0eae595536861939ae22aee9e4803c47d (patch)
tree933da93c93a24a36aef265bb397a007e9638001d
parentbe883180f9659029d9ae2d6b20d9ba5697341525 (diff)
downloaddoc-266aa8a0eae595536861939ae22aee9e4803c47d.tar.gz
doc-266aa8a0eae595536861939ae22aee9e4803c47d.zip
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@
-rw-r--r--documentation/content/en/books/porters-handbook/special/_index.adoc13
1 files 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.