2006-10-19 19:50:23 +08:00
|
|
|
#
|
|
|
|
# Main file for fish command completions. This file contains various
|
|
|
|
# common helper functions for the command completions. All actual
|
|
|
|
# completions are located in the completions subdirectory.
|
|
|
|
#
|
|
|
|
|
2007-04-23 02:49:56 +08:00
|
|
|
#
|
|
|
|
# Set default field separators
|
|
|
|
#
|
|
|
|
|
|
|
|
set -g IFS \n\ \t
|
|
|
|
|
2006-10-19 19:50:23 +08:00
|
|
|
#
|
|
|
|
# Set default search paths for completions and shellscript functions
|
|
|
|
# unless they already exist
|
|
|
|
#
|
|
|
|
|
|
|
|
set -l configdir ~/.config
|
2007-10-28 17:08:40 +08:00
|
|
|
|
2006-10-19 19:50:23 +08:00
|
|
|
if set -q XDG_CONFIG_HOME
|
|
|
|
set configdir $XDG_CONFIG_HOME
|
|
|
|
end
|
|
|
|
|
2012-07-09 06:20:39 +08:00
|
|
|
# __fish_datadir, __fish_sysconfdir, __fish_help_dir, __fish_bin_dir
|
|
|
|
# are expected to have been set up by read_init from fish.cpp
|
2006-10-19 19:50:23 +08:00
|
|
|
|
2007-10-28 17:08:40 +08:00
|
|
|
# Set up function and completion paths. Make sure that the fish
|
|
|
|
# default functions/completions are included in the respective path.
|
|
|
|
|
2010-09-18 10:18:26 +08:00
|
|
|
if not set -q fish_function_path
|
2012-07-09 06:20:39 +08:00
|
|
|
set fish_function_path $configdir/fish/functions $__fish_sysconfdir/functions $__fish_datadir/functions
|
2006-10-19 19:50:23 +08:00
|
|
|
end
|
|
|
|
|
2012-07-09 06:20:39 +08:00
|
|
|
if not contains $__fish_datadir/functions $fish_function_path
|
|
|
|
set fish_function_path[-1] $__fish_datadir/functions
|
2007-10-28 17:10:42 +08:00
|
|
|
end
|
|
|
|
|
2010-09-18 10:18:26 +08:00
|
|
|
if not set -q fish_complete_path
|
2013-02-18 08:14:36 +08:00
|
|
|
set fish_complete_path $configdir/fish/completions $__fish_sysconfdir/completions $__fish_datadir/completions $configdir/fish/generated_completions
|
2006-10-19 19:50:23 +08:00
|
|
|
end
|
|
|
|
|
2012-07-09 06:20:39 +08:00
|
|
|
if not contains $__fish_datadir/completions $fish_complete_path
|
|
|
|
set fish_complete_path[-1] $__fish_datadir/completions
|
2007-10-28 17:10:42 +08:00
|
|
|
end
|
|
|
|
|
2007-10-28 17:08:40 +08:00
|
|
|
#
|
2006-10-19 19:50:23 +08:00
|
|
|
# This is a Solaris-specific test to modify the PATH so that
|
2007-10-28 17:08:40 +08:00
|
|
|
# Posix-conformant tools are used by default. It is separate from the
|
|
|
|
# other PATH code because this directory needs to be prepended, not
|
|
|
|
# appended, since it contains POSIX-compliant replacements for various
|
|
|
|
# system utilities.
|
|
|
|
#
|
2006-10-19 19:50:23 +08:00
|
|
|
|
|
|
|
if test -d /usr/xpg4/bin
|
|
|
|
if not contains /usr/xpg4/bin $PATH
|
2010-09-18 10:18:26 +08:00
|
|
|
set PATH /usr/xpg4/bin $PATH
|
2006-10-19 19:50:23 +08:00
|
|
|
end
|
2010-09-18 10:18:26 +08:00
|
|
|
end
|
2006-10-19 19:50:23 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Add a few common directories to path, if they exists. Note that pure
|
|
|
|
# console programs like makedep sometimes live in /usr/X11R6/bin, so we
|
|
|
|
# want this even for text-only terminals.
|
|
|
|
#
|
|
|
|
|
2012-07-09 06:20:39 +08:00
|
|
|
set -l path_list /bin /usr/bin /usr/X11R6/bin /usr/local/bin $__fish_bin_dir
|
2006-10-19 19:50:23 +08:00
|
|
|
|
|
|
|
# Root should also have the sbin directories in the path
|
2007-08-20 00:42:30 +08:00
|
|
|
switch $USER
|
|
|
|
case root
|
2012-07-09 06:20:39 +08:00
|
|
|
set path_list $path_list /sbin /usr/sbin /usr/local/sbin
|
2006-10-19 19:50:23 +08:00
|
|
|
end
|
|
|
|
|
2013-02-02 09:18:12 +08:00
|
|
|
#
|
|
|
|
# It's desirable to only modify PATH once, because fish will check it for validity,
|
|
|
|
# which performs disk I/O. Construct the new PATH locally.
|
|
|
|
#
|
|
|
|
|
|
|
|
set -l path_under_construction $PATH
|
2007-09-29 05:38:21 +08:00
|
|
|
for i in $path_list
|
2013-02-02 09:18:12 +08:00
|
|
|
if begin ; not contains $i $path_under_construction ; and test -d $i ; end
|
|
|
|
set path_under_construction $path_under_construction $i
|
2006-10-19 19:50:23 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-02 09:18:12 +08:00
|
|
|
set PATH $path_under_construction
|
|
|
|
|
2007-08-20 00:42:30 +08:00
|
|
|
#
|
2007-04-24 05:10:26 +08:00
|
|
|
# Launch debugger on SIGTRAP
|
2007-08-20 00:42:30 +08:00
|
|
|
#
|
2007-04-24 05:10:26 +08:00
|
|
|
function fish_sigtrap_handler --on-signal TRAP --no-scope-shadowing --description "Signal handler for the TRAP signal. Lanches a debug prompt."
|
|
|
|
breakpoint
|
|
|
|
end
|
2006-10-19 19:50:23 +08:00
|
|
|
|
2007-08-20 00:42:30 +08:00
|
|
|
#
|
|
|
|
# Whenever a prompt is displayed, make sure that interactive
|
|
|
|
# mode-specific initializations have been performed.
|
2007-10-28 17:11:17 +08:00
|
|
|
# This handler removes itself after it is first called.
|
2007-08-20 00:42:30 +08:00
|
|
|
#
|
|
|
|
function __fish_on_interactive --on-event fish_prompt
|
|
|
|
__fish_config_interactive
|
2007-10-28 17:11:17 +08:00
|
|
|
functions -e __fish_on_interactive
|
2006-10-19 19:50:23 +08:00
|
|
|
end
|
2007-08-20 00:42:30 +08:00
|
|
|
|