2022-08-11 15:07:59 +00:00
|
|
|
# This file does some internal fish setup.
|
|
|
|
# It is not recommended to remove or edit it.
|
2007-04-22 18:49:56 +00:00
|
|
|
#
|
|
|
|
# Set default field separators
|
|
|
|
#
|
|
|
|
set -g IFS \n\ \t
|
2017-07-02 03:45:30 +00:00
|
|
|
set -qg __fish_added_user_paths
|
|
|
|
or set -g __fish_added_user_paths
|
2007-04-22 18:49:56 +00:00
|
|
|
|
2014-02-20 18:26:57 +00:00
|
|
|
#
|
|
|
|
# Create the default command_not_found handler
|
|
|
|
#
|
|
|
|
function __fish_default_command_not_found_handler
|
2022-03-17 17:14:36 +00:00
|
|
|
printf (_ "fish: Unknown command: %s\n") (string escape -- $argv[1]) >&2
|
2014-02-20 18:26:57 +00:00
|
|
|
end
|
|
|
|
|
2022-03-17 17:06:36 +00:00
|
|
|
|
2020-08-28 20:37:37 +00:00
|
|
|
if not status --is-interactive
|
Call "fish_command_not_found" if a command wasn't found
Previously, when a command wasn't found, fish would emit the
"fish_command_not_found" *event*.
This was annoying as it was hard to override (the code ended up
checking for a function called `__fish_command_not_found_handler`
anyway!), the setup was ugly,
and it's useless - there is no use case for multiple command-not-found handlers.
Instead, let's just call a function `fish_command_not_found` if it
exists, or print the default message otherwise.
The event is completely removed, but because a missing event is not an error
(MEISNAE in C++-speak) this isn't an issue.
Note that, for backwards-compatibility, we still keep the default
handler function around even tho the new one is hard-coded in C++.
Also, if we detect a previous handler, the new handler just calls it.
This way, the backwards-compatible way to install a custom handler is:
```fish
function __fish_command_not_found_handler --on-event fish_command_not_found
# do a little dance, make a little love, get down tonight
end
```
and the new hotness is
```fish
function fish_command_not_found
# do the thing
end
```
Fixes #7293.
2020-08-29 19:54:13 +00:00
|
|
|
# Hook up the default as the command_not_found handler
|
|
|
|
# if we are not interactive to avoid custom handlers.
|
|
|
|
function fish_command_not_found --on-event fish_command_not_found
|
2016-12-04 04:36:47 +00:00
|
|
|
__fish_default_command_not_found_handler $argv
|
|
|
|
end
|
2014-02-20 18:26:57 +00:00
|
|
|
end
|
|
|
|
|
2006-10-19 11:50:23 +00:00
|
|
|
#
|
|
|
|
# Set default search paths for completions and shellscript functions
|
|
|
|
# unless they already exist
|
|
|
|
#
|
|
|
|
|
2018-03-12 13:34:20 +00:00
|
|
|
# __fish_data_dir, __fish_sysconf_dir, __fish_help_dir, __fish_bin_dir
|
2012-07-08 22:20:39 +00:00
|
|
|
# are expected to have been set up by read_init from fish.cpp
|
2006-10-19 11:50:23 +00:00
|
|
|
|
2016-04-04 06:33:35 +00:00
|
|
|
# Grab extra directories (as specified by the build process, usually for
|
|
|
|
# third-party packages to ship completions &c.
|
|
|
|
set -l __extra_completionsdir
|
|
|
|
set -l __extra_functionsdir
|
2016-04-05 14:22:12 +00:00
|
|
|
set -l __extra_confdir
|
2018-03-12 13:34:20 +00:00
|
|
|
if test -f $__fish_data_dir/__fish_build_paths.fish
|
|
|
|
source $__fish_data_dir/__fish_build_paths.fish
|
2016-04-04 06:33:35 +00:00
|
|
|
end
|
|
|
|
|
2019-12-12 15:52:28 +00:00
|
|
|
# Compute the directories for vendor configuration. We want to include
|
|
|
|
# all of XDG_DATA_DIRS, as well as the __extra_* dirs defined above.
|
|
|
|
set -l xdg_data_dirs
|
|
|
|
if set -q XDG_DATA_DIRS
|
|
|
|
set --path xdg_data_dirs $XDG_DATA_DIRS
|
2020-01-19 08:21:53 +00:00
|
|
|
set xdg_data_dirs (string replace -r '([^/])/$' '$1' -- $xdg_data_dirs)/fish
|
2019-12-12 15:52:28 +00:00
|
|
|
else
|
|
|
|
set xdg_data_dirs $__fish_data_dir
|
|
|
|
end
|
|
|
|
|
2022-10-07 14:13:33 +00:00
|
|
|
set -g __fish_vendor_completionsdirs
|
|
|
|
set -g __fish_vendor_functionsdirs
|
|
|
|
set -g __fish_vendor_confdirs
|
2020-07-13 00:12:32 +00:00
|
|
|
# Don't load vendor directories when running unit tests
|
|
|
|
if not set -q FISH_UNIT_TESTS_RUNNING
|
2022-10-07 14:13:33 +00:00
|
|
|
set __fish_vendor_completionsdirs $__fish_user_data_dir/vendor_completions.d $xdg_data_dirs/vendor_completions.d
|
|
|
|
set __fish_vendor_functionsdirs $__fish_user_data_dir/vendor_functions.d $xdg_data_dirs/vendor_functions.d
|
|
|
|
set __fish_vendor_confdirs $__fish_user_data_dir/vendor_conf.d $xdg_data_dirs/vendor_conf.d
|
2019-12-12 15:52:28 +00:00
|
|
|
|
2020-07-13 00:12:32 +00:00
|
|
|
# Ensure that extra directories are always included.
|
2022-10-07 14:13:33 +00:00
|
|
|
if not contains -- $__extra_completionsdir $__fish_vendor_completionsdirs
|
|
|
|
set -a __fish_vendor_completionsdirs $__extra_completionsdir
|
2020-07-13 00:12:32 +00:00
|
|
|
end
|
2022-10-07 14:13:33 +00:00
|
|
|
if not contains -- $__extra_functionsdir $__fish_vendor_functionsdirs
|
|
|
|
set -a __fish_vendor_functionsdirs $__extra_functionsdir
|
2020-07-13 00:12:32 +00:00
|
|
|
end
|
2022-10-07 14:13:33 +00:00
|
|
|
if not contains -- $__extra_confdir $__fish_vendor_confdirs
|
|
|
|
set -a __fish_vendor_confdirs $__extra_confdir
|
2020-07-13 00:12:32 +00:00
|
|
|
end
|
2019-12-12 15:52:28 +00:00
|
|
|
end
|
|
|
|
|
2007-10-28 09:08:40 +00:00
|
|
|
# Set up function and completion paths. Make sure that the fish
|
|
|
|
# default functions/completions are included in the respective path.
|
|
|
|
|
2010-09-18 02:18:26 +00:00
|
|
|
if not set -q fish_function_path
|
2022-10-07 14:13:33 +00:00
|
|
|
set fish_function_path $__fish_config_dir/functions $__fish_sysconf_dir/functions $__fish_vendor_functionsdirs $__fish_data_dir/functions
|
2019-02-11 17:08:28 +00:00
|
|
|
else if not contains -- $__fish_data_dir/functions $fish_function_path
|
|
|
|
set -a fish_function_path $__fish_data_dir/functions
|
2007-10-28 09:10:42 +00:00
|
|
|
end
|
|
|
|
|
2010-09-18 02:18:26 +00:00
|
|
|
if not set -q fish_complete_path
|
2022-10-07 14:13:33 +00:00
|
|
|
set fish_complete_path $__fish_config_dir/completions $__fish_sysconf_dir/completions $__fish_vendor_completionsdirs $__fish_data_dir/completions $__fish_user_data_dir/generated_completions
|
2019-02-11 17:08:28 +00:00
|
|
|
else if not contains -- $__fish_data_dir/completions $fish_complete_path
|
|
|
|
set -a fish_complete_path $__fish_data_dir/completions
|
2007-10-28 09:10:42 +00:00
|
|
|
end
|
|
|
|
|
2013-08-25 20:25:24 +00:00
|
|
|
# Add a handler for when fish_user_path changes, so we can apply the same changes to PATH
|
|
|
|
function __fish_reconstruct_path -d "Update PATH when fish_user_paths changes" --on-variable fish_user_paths
|
2021-07-05 17:09:40 +00:00
|
|
|
# Deduplicate $fish_user_paths
|
|
|
|
# This should help with people appending to it in config.fish
|
|
|
|
set -l new_user_path
|
|
|
|
for path in (string split : -- $fish_user_paths)
|
|
|
|
if not contains -- $path $new_user_path
|
|
|
|
set -a new_user_path $path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if test (count $new_user_path) -lt (count $fish_user_paths)
|
|
|
|
# This will end up calling us again, so we return
|
|
|
|
set fish_user_paths $new_user_path
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-12-04 04:36:47 +00:00
|
|
|
set -l local_path $PATH
|
2017-07-02 03:45:30 +00:00
|
|
|
|
2016-12-04 04:36:47 +00:00
|
|
|
for x in $__fish_added_user_paths
|
|
|
|
set -l idx (contains --index -- $x $local_path)
|
|
|
|
and set -e local_path[$idx]
|
|
|
|
end
|
|
|
|
|
2017-07-02 03:45:30 +00:00
|
|
|
set -g __fish_added_user_paths
|
|
|
|
if set -q fish_user_paths
|
2019-02-13 11:35:15 +00:00
|
|
|
# Explicitly split on ":" because $fish_user_paths might not be a path variable,
|
|
|
|
# but $PATH definitely is.
|
|
|
|
for x in (string split ":" -- $fish_user_paths[-1..1])
|
2017-07-02 03:45:30 +00:00
|
|
|
if set -l idx (contains --index -- $x $local_path)
|
|
|
|
set -e local_path[$idx]
|
|
|
|
else
|
2019-02-11 17:08:28 +00:00
|
|
|
set -ga __fish_added_user_paths $x
|
2017-07-02 03:45:30 +00:00
|
|
|
end
|
2019-02-11 17:08:28 +00:00
|
|
|
set -p local_path $x
|
2016-12-04 04:36:47 +00:00
|
|
|
end
|
|
|
|
end
|
2017-07-02 20:41:07 +00:00
|
|
|
|
2016-12-04 04:36:47 +00:00
|
|
|
set -xg PATH $local_path
|
2013-08-25 20:25:24 +00:00
|
|
|
end
|
2017-07-02 03:45:30 +00:00
|
|
|
|
2007-08-19 16:42:30 +00:00
|
|
|
#
|
2007-04-23 21:10:26 +00:00
|
|
|
# Launch debugger on SIGTRAP
|
2007-08-19 16:42:30 +00:00
|
|
|
#
|
2022-01-28 00:21:22 +00:00
|
|
|
function fish_sigtrap_handler --on-signal TRAP --no-scope-shadowing --description "TRAP handler: debug prompt"
|
2016-12-04 04:36:47 +00:00
|
|
|
breakpoint
|
2007-04-23 21:10:26 +00:00
|
|
|
end
|
2006-10-19 11:50:23 +00:00
|
|
|
|
2007-08-19 16:42:30 +00:00
|
|
|
#
|
2020-05-26 20:24:31 +00:00
|
|
|
# When a prompt is first displayed, make sure that interactive
|
2007-08-19 16:42:30 +00:00
|
|
|
# mode-specific initializations have been performed.
|
2022-09-21 15:00:31 +00:00
|
|
|
# This includes a `read` prompt, hence the fish_read event.
|
2007-10-28 09:11:17 +00:00
|
|
|
# This handler removes itself after it is first called.
|
2007-08-19 16:42:30 +00:00
|
|
|
#
|
2022-09-21 15:00:31 +00:00
|
|
|
function __fish_on_interactive --on-event fish_prompt --on-event fish_read
|
2023-02-11 13:15:44 +00:00
|
|
|
# We erase this *first* so it can't be called again,
|
|
|
|
# e.g. if fish_greeting calls "read".
|
2016-12-04 04:36:47 +00:00
|
|
|
functions -e __fish_on_interactive
|
2023-02-11 13:15:44 +00:00
|
|
|
__fish_config_interactive
|
2006-10-19 11:50:23 +00:00
|
|
|
end
|
2007-08-19 16:42:30 +00:00
|
|
|
|
2016-07-10 16:34:27 +00:00
|
|
|
# Set the locale if it isn't explicitly set. Allowing the lack of locale env vars to imply the
|
|
|
|
# C/POSIX locale causes too many problems. Do this before reading the snippets because they might be
|
|
|
|
# in UTF-8 (with non-ASCII characters).
|
|
|
|
__fish_set_locale
|
|
|
|
|
2019-02-10 17:18:32 +00:00
|
|
|
#
|
|
|
|
# Some things should only be done for login terminals
|
|
|
|
# This used to be in etc/config.fish - keep it here to keep the semantics
|
|
|
|
#
|
|
|
|
if status --is-login
|
|
|
|
if command -sq /usr/libexec/path_helper
|
|
|
|
# Adapt construct_path from the macOS /usr/libexec/path_helper
|
|
|
|
# executable for fish; see
|
|
|
|
# https://opensource.apple.com/source/shell_cmds/shell_cmds-203/path_helper/path_helper.c.auto.html .
|
|
|
|
function __fish_macos_set_env -d "set an environment variable like path_helper does (macOS only)"
|
2019-06-23 23:09:10 +00:00
|
|
|
set -l result
|
2019-02-10 17:18:32 +00:00
|
|
|
|
2019-06-23 23:09:10 +00:00
|
|
|
# Populate path according to config files
|
2019-02-10 17:18:32 +00:00
|
|
|
for path_file in $argv[2] $argv[3]/*
|
2021-11-23 13:45:28 +00:00
|
|
|
if test -f $path_file
|
2019-02-10 17:18:32 +00:00
|
|
|
while read -l entry
|
2019-02-14 10:00:47 +00:00
|
|
|
if not contains -- $entry $result
|
2019-04-11 09:49:29 +00:00
|
|
|
test -n "$entry"
|
|
|
|
and set -a result $entry
|
2019-02-10 17:18:32 +00:00
|
|
|
end
|
|
|
|
end <$path_file
|
|
|
|
end
|
2018-03-31 19:01:29 +00:00
|
|
|
end
|
2018-03-28 06:35:41 +00:00
|
|
|
|
2019-06-23 23:09:10 +00:00
|
|
|
# Merge in any existing path elements
|
|
|
|
for existing_entry in $$argv[1]
|
|
|
|
if not contains -- $existing_entry $result
|
|
|
|
set -a result $existing_entry
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-10 17:18:32 +00:00
|
|
|
set -xg $argv[1] $result
|
|
|
|
end
|
2018-03-28 06:35:41 +00:00
|
|
|
|
2020-03-09 18:36:12 +00:00
|
|
|
__fish_macos_set_env PATH /etc/paths '/etc/paths.d'
|
2021-11-23 13:45:28 +00:00
|
|
|
if test -n "$MANPATH"
|
2020-03-09 18:36:12 +00:00
|
|
|
__fish_macos_set_env MANPATH /etc/manpaths '/etc/manpaths.d'
|
2019-02-10 17:18:32 +00:00
|
|
|
end
|
|
|
|
functions -e __fish_macos_set_env
|
2018-03-31 19:01:29 +00:00
|
|
|
end
|
2018-03-28 06:35:41 +00:00
|
|
|
|
2016-12-04 04:36:47 +00:00
|
|
|
#
|
|
|
|
# Put linux consoles in unicode mode.
|
|
|
|
#
|
|
|
|
if test "$TERM" = linux
|
2019-02-11 17:08:28 +00:00
|
|
|
and string match -qir '\.UTF' -- $LANG
|
|
|
|
and command -sq unicode_start
|
|
|
|
unicode_start
|
2016-12-04 04:36:47 +00:00
|
|
|
end
|
2016-03-06 14:28:54 +00:00
|
|
|
end
|
2018-03-28 06:35:41 +00:00
|
|
|
|
|
|
|
# Invoke this here to apply the current value of fish_user_path after
|
|
|
|
# PATH is possibly set above.
|
|
|
|
__fish_reconstruct_path
|
2018-04-14 22:11:04 +00:00
|
|
|
|
|
|
|
# Allow %n job expansion to be used with fg/bg/wait
|
|
|
|
# `jobs` is the only one that natively supports job expansion
|
|
|
|
function __fish_expand_pid_args
|
|
|
|
for arg in $argv
|
|
|
|
if string match -qr '^%\d+$' -- $arg
|
2020-03-27 22:51:02 +00:00
|
|
|
if not jobs -p $arg
|
2018-04-14 22:11:04 +00:00
|
|
|
return 1
|
|
|
|
end
|
|
|
|
else
|
2018-04-15 04:19:25 +00:00
|
|
|
printf "%s\n" $arg
|
2018-04-14 22:11:04 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-18 13:24:23 +00:00
|
|
|
for jobbltn in bg wait disown
|
2019-02-11 17:08:28 +00:00
|
|
|
function $jobbltn -V jobbltn
|
2023-06-10 13:35:44 +00:00
|
|
|
set -l args (__fish_expand_pid_args $argv)
|
|
|
|
and builtin $jobbltn $args
|
2019-02-10 23:01:38 +00:00
|
|
|
end
|
2018-04-16 15:01:34 +00:00
|
|
|
end
|
2020-10-18 13:24:23 +00:00
|
|
|
function fg
|
2023-06-10 13:35:44 +00:00
|
|
|
set -l args (__fish_expand_pid_args $argv)
|
|
|
|
and builtin fg $args[-1]
|
2020-10-18 13:24:23 +00:00
|
|
|
end
|
2019-02-15 01:01:28 +00:00
|
|
|
|
2023-01-29 13:44:45 +00:00
|
|
|
if command -q kill
|
|
|
|
# Only define this if something to wrap exists
|
|
|
|
# this allows a nice "commad not found" error to be triggered.
|
|
|
|
function kill
|
2023-06-10 13:35:44 +00:00
|
|
|
set -l args (__fish_expand_pid_args $argv)
|
|
|
|
and command kill $args
|
2023-01-29 13:44:45 +00:00
|
|
|
end
|
2019-02-11 17:08:28 +00:00
|
|
|
end
|
2018-04-16 15:01:34 +00:00
|
|
|
|
2018-06-12 20:28:26 +00:00
|
|
|
# As last part of initialization, source the conf directories.
|
|
|
|
# Implement precedence (User > Admin > Extra (e.g. vendors) > Fish) by basically doing "basename".
|
|
|
|
set -l sourcelist
|
2022-10-07 14:13:33 +00:00
|
|
|
for file in $__fish_config_dir/conf.d/*.fish $__fish_sysconf_dir/conf.d/*.fish $__fish_vendor_confdirs/*.fish
|
2018-06-12 20:28:26 +00:00
|
|
|
set -l basename (string replace -r '^.*/' '' -- $file)
|
|
|
|
contains -- $basename $sourcelist
|
|
|
|
and continue
|
|
|
|
set sourcelist $sourcelist $basename
|
|
|
|
# Also skip non-files or unreadable files.
|
|
|
|
# This allows one to use e.g. symlinks to /dev/null to "mask" something (like in systemd).
|
2021-11-23 13:45:28 +00:00
|
|
|
test -f $file -a -r $file
|
2018-06-12 20:28:26 +00:00
|
|
|
and source $file
|
|
|
|
end
|