mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
6ece8523b1
Completions can now be written which disable file completion and then selectively re-enable it using this function. Closes #834.
14 lines
315 B
Fish
14 lines
315 B
Fish
function __fish_complete_path --description "Complete using path"
|
|
set -l target
|
|
set -l description
|
|
switch (count $argv)
|
|
case 0
|
|
# pass
|
|
case 1
|
|
set target "$argv[1]"
|
|
case 2 "*"
|
|
set target "$argv[1]"
|
|
set description "$argv[2]"
|
|
end
|
|
printf "%s\t$description\n" (command ls -dp "$target"*)
|
|
end
|