2006-02-08 09:20:05 +00:00
|
|
|
#
|
|
|
|
# Find files that complete $argv[1], has the suffix $argv[2], and
|
2015-07-23 06:22:27 +00:00
|
|
|
# output them as completions with the optional description $argv[3] Both
|
2007-01-30 15:26:31 +00:00
|
|
|
# $argv[1] and $argv[3] are optional, if only one is specified, it is
|
2018-11-08 01:02:17 +00:00
|
|
|
# assumed to be the argument to complete. If $argv[4] is present, it is
|
|
|
|
# treated as a prefix for the path, i.e. in lieu of $PWD.
|
2006-02-08 09:20:05 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
function __fish_complete_suffix -d "Complete using files"
|
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
# Variable declarations
|
2007-01-30 15:26:31 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
set -l comp
|
|
|
|
set -l suff
|
|
|
|
set -l desc
|
|
|
|
set -l files
|
2018-11-08 22:17:47 +00:00
|
|
|
set -l prefix ""
|
2007-01-30 15:26:31 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
switch (count $argv)
|
2007-01-30 15:26:31 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
case 1
|
|
|
|
set comp (commandline -ct)
|
|
|
|
set suff $argv
|
2019-01-22 06:32:40 +00:00
|
|
|
set desc "\n"
|
2007-01-30 15:26:31 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
case 2
|
|
|
|
set comp $argv[1]
|
|
|
|
set suff $argv[2]
|
2019-01-22 06:32:40 +00:00
|
|
|
set desc "\n"
|
2007-01-30 15:26:31 +00:00
|
|
|
|
2016-11-28 05:27:22 +00:00
|
|
|
case 3
|
|
|
|
set comp $argv[1]
|
|
|
|
set suff $argv[2]
|
|
|
|
set desc $argv[3]
|
2007-01-30 15:26:31 +00:00
|
|
|
|
2018-11-08 01:02:17 +00:00
|
|
|
case 4
|
|
|
|
set comp $argv[1]
|
|
|
|
set suff $argv[2]
|
|
|
|
set desc $argv[3]
|
|
|
|
set prefix $argv[4]
|
|
|
|
|
|
|
|
# Only directories are supported as prefixes, and to use the same logic
|
|
|
|
# for both absolute prefixed paths and relative non-prefixed paths, $prefix
|
|
|
|
# must terminate in a `/` if it is present, so it can be unconditionally
|
|
|
|
# prefixed to any path to get the desired result.
|
|
|
|
if not string match -qr '/$' $prefix
|
|
|
|
set prefix $prefix/
|
|
|
|
end
|
2016-11-28 05:27:22 +00:00
|
|
|
end
|
2007-01-30 15:26:31 +00:00
|
|
|
|
2018-04-29 16:17:35 +00:00
|
|
|
# Strip leading ./ as it confuses the detection of base and suffix
|
|
|
|
# It is conditionally re-added below.
|
2018-11-08 01:02:17 +00:00
|
|
|
set base $prefix(string replace -r '^("\')?\\./' '' -- $comp | string trim -c '\'"') # " make emacs syntax highlighting happy
|
2018-06-26 01:59:24 +00:00
|
|
|
# echo "base: $base" > /dev/tty
|
|
|
|
# echo "suffix: $suff" > /dev/tty
|
2018-04-29 16:17:35 +00:00
|
|
|
|
2018-06-19 02:32:05 +00:00
|
|
|
set -l all
|
|
|
|
set -l dirs
|
2018-04-29 16:17:35 +00:00
|
|
|
# If $comp is "./ma" and the file is "main.py", we'll catch that case here,
|
|
|
|
# but complete.cpp will not consider it a match, so we have to output the
|
|
|
|
# correct form.
|
2018-06-19 02:32:05 +00:00
|
|
|
|
|
|
|
# Also do directory completion, since there might be files with the correct
|
|
|
|
# suffix in a subdirectory. `eval` is used since $suff may be passed in
|
|
|
|
# as {.foo,.bar} and we want to expand that.
|
|
|
|
eval "set all $base*$suff"
|
|
|
|
if not string match -qr '/$' -- $suff
|
|
|
|
eval "set dirs $base*/"
|
|
|
|
|
|
|
|
# The problem is that we now have each directory included twice in the output,
|
|
|
|
# once as `dir` and once as `dir/`. The runtime here is O(n) for n directories
|
|
|
|
# in the output, but hopefully since we have only one level (no nested results)
|
|
|
|
# it should be fast. The alternative is to shell out to `sort` and remove any
|
|
|
|
# duplicate results, but it would have to be a huge `n` to make up for the fork
|
|
|
|
# overhead.
|
|
|
|
for dir in $dirs
|
|
|
|
set all (string match -v (string match -r '(.*)/$' -- $dir)[2] -- $all)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-30 19:31:45 +00:00
|
|
|
set files $all $dirs
|
2018-05-20 17:30:07 +00:00
|
|
|
if string match -qr '^\\./' -- $comp
|
2018-06-19 02:32:05 +00:00
|
|
|
set files ./$files
|
2018-05-20 05:38:17 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Another problem is that expanded paths are not matched, either.
|
|
|
|
# So an expression like $HOME/foo*.zip will expand to /home/rdahl/foo-bar.zip
|
|
|
|
# but that no longer matches the expression at the command line.
|
2018-05-22 14:58:57 +00:00
|
|
|
if string match -qr '[${}*~]' -- $comp
|
2018-05-20 05:38:17 +00:00
|
|
|
set -l expanded
|
|
|
|
eval "set expanded $comp"
|
2018-05-20 18:50:28 +00:00
|
|
|
set files (string replace -- $expanded $comp $files)
|
2018-04-29 16:17:35 +00:00
|
|
|
end
|
2006-02-08 09:20:05 +00:00
|
|
|
|
2018-06-19 02:32:05 +00:00
|
|
|
if set -q files[1]
|
2018-11-08 01:02:17 +00:00
|
|
|
if string match -qr -- . "$desc"
|
|
|
|
set desc "\t$desc"
|
|
|
|
end
|
|
|
|
if string match -qr -- . "$prefix"
|
|
|
|
# Ideally, only replace in the beginning of the string, but we have no
|
|
|
|
# way of doing a pcre2 escape so we can use a regex replace instead
|
|
|
|
set files (string replace $prefix "" $files)
|
2018-05-20 19:35:51 +00:00
|
|
|
end
|
2018-06-19 02:32:05 +00:00
|
|
|
printf "%s$desc\n" $files #| sort -u
|
2016-11-28 05:27:22 +00:00
|
|
|
end
|
2006-02-08 09:20:05 +00:00
|
|
|
|
|
|
|
end
|