mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 17:28:19 +00:00
f2b5292bcb
commit 33358874f1c275d8b08186e29f24a7889d2b5224 Author: maxfl <gmaxfl@gmail.com> Date: Thu Jun 14 11:01:13 2012 +0400 revert fish_pager commit cee1bc8a66ec3adc9573b76e1aca3131cd32db83 Author: maxfl <gmaxfl@gmail.com> Date: Thu Jun 14 10:57:41 2012 +0400 revert fish_pager.cpp commit 27f3bd39dd9903009503d20a59a9e2ba84add07a Author: maxfl <gmaxfl@gmail.com> Date: Wed Jun 13 17:35:20 2012 +0400 __fish_complete_command now can understand '--arg=option' tokens latexmk completion is updated commit 97b53a4b53de9389675783f3e90f58215d936356 Author: maxfl <gmaxfl@gmail.com> Date: Wed Jun 13 16:46:47 2012 +0400 . completion commit d5b63b9963b0a02a71f564e7392171c5eab005cd Author: maxfl <gmaxfl@gmail.com> Date: Wed Jun 13 16:46:13 2012 +0400 a lot of new completions commit ceab87d99425124aa010c64ed062e27202b850d2 Author: Maxim Gonchar <gonchar@myhost.localdomain> Date: Tue Jun 12 20:19:31 2012 +0400 A lot of new completions. Some small updates and fixes of old functions and completions. commit 950aecd570b51e1b9dc444cc651b282a220e8d94 Author: Maxim Gonchar <gonchar@myhost.localdomain> Date: Tue Jun 12 20:03:44 2012 +0400 step-coloring initial set_color correction
30 lines
787 B
Fish
30 lines
787 B
Fish
function __fish_complete_list --argument div cmd prefix iprefix
|
|
if not set -q cmd[1]
|
|
echo "Usage:
|
|
__fish_complete_list <separator> <function> <prefix> <itemprefix>
|
|
where:
|
|
separator - a symbol, separating individual entries
|
|
function - a function which prints a completion list to complete each entry
|
|
prefix - a prefix, which is printed before the list
|
|
itemprefix - a prefi, which is printed before each item" > /dev/stderr
|
|
return 1
|
|
end
|
|
set -q iprefix[1]
|
|
or set -l iprefix ""
|
|
set -q prefix[1]
|
|
or set -l prefix ""
|
|
set -l pat (commandline -t)
|
|
#set -l pat $argv[5]
|
|
switch $pat
|
|
case "*$div*"
|
|
for i in (echo $pat | sed "s/^\(.\+$div\)$iprefix.*\$/\1/")$iprefix(eval $cmd)
|
|
echo $i
|
|
end
|
|
case '*'
|
|
for i in $prefix$iprefix(eval $cmd)
|
|
echo $i
|
|
end
|
|
end
|
|
|
|
|
|
end
|