diff options
author | Frank Terbeck <ft@bewatermyfriend.org> | 2014-05-21 13:23:04 +0200 |
---|---|---|
committer | Frank Terbeck <ft@bewatermyfriend.org> | 2014-05-21 13:23:04 +0200 |
commit | 5ac620f453784b5ff4fa1a377ec7313079595b2c (patch) | |
tree | 003cd34d1fbea68f356856d763898d29fa60f80c | |
parent | befdc25af258fa460a5b33637f96fc6cf275da03 (diff) | |
download | zsh-5ac620f453784b5ff4fa1a377ec7313079595b2c.tar.gz zsh-5ac620f453784b5ff4fa1a377ec7313079595b2c.zip |
Add note about $fpath entries to README.Debian
Signed-off-by: Frank Terbeck <ft@bewatermyfriend.org>
-rw-r--r-- | debian/README.Debian | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/README.Debian b/debian/README.Debian index 302577f31..5aeddb5fc 100644 --- a/debian/README.Debian +++ b/debian/README.Debian @@ -31,3 +31,22 @@ Now you can use the usual gdb commands like step / continue / ... to debug the Zsh process at source level. -- Michael Prokop <mika@debian.org> + + +Load-path for functions from other packages +------------------------------------------- + +In respsonse to #620452, the zsh-binary from Debian's zsh package started to +provide two entries to $fpath (the search path for loadable functions) for +other packages to drop function files into: + + - /usr/share/zsh/vendor-completions for functions that add functionality to + zsh's function based completion system (compsys) + + - /usr/share/zsh/vendor-functions for all other functions + +If you maintain another Debian package that wants to add functions to zsh's +function load-path, please use the those conventions when installing function +files. + + -- Frank Terbeck <ft@bewatermyfriend.org>, Wed, 21 May 2014 13:15:58 +0200 |