mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-16 23:41:16 -03:00
- Add options to the autotools build to set the path for the "vendor" or "extra" configuration snippets, functions and completions directories. - Remove the vendor_completions directory from the Xcode build, as these are relocatable and compiling the paths in does not make sense. This allows packaging tools like Homebrew and Nix to use a common directory outside of the main prefix for third-party completions, and to make these available for programmatic discovery through `pkg-config`. Closes #2113
9 lines
353 B
Fish
9 lines
353 B
Fish
# @configure_input@
|
|
# This function is generated by the autotools build to "compile in"
|
|
# the local "vendor" completions, functions and configuration snippets.
|
|
# It is sourced by share/config.fish, if it exists.
|
|
|
|
set __extra_completionsdir @extra_completionsdir@
|
|
set __extra_functionsdir @extra_functionsdir@
|
|
set __extra_snippetsdir @extra_snippetsdir@
|