fish-shell/share/completions/bd.fish
Fabian Homborg ce245704d7 Reformat completion scripts
These were excluded from style.fish
2019-05-05 12:53:09 +02:00

19 lines
558 B
Fish

#!/usr/bin/env fish
# -*- mode:fish; tab-width:4 -*-
#
# fish-completion for fish-bd
# https://github.com/0rax/fish-bd
#
complete -c bd -A -f
complete -c bd -s c -d "Classic mode: goes back to the first directory named as the string"
complete -c bd -s s -d "Seems mode: goes back to the first directory containing string"
complete -c bd -s i -d "Case insensitive move (implies seems mode)"
complete -c bd -s h -x -d "Display help and exit"
function __fish_bd_complete_dirs
string split "/" -- $PWD
end
complete -c bd -a '(__fish_bd_complete_dirs)'