diff --git a/share/completions/rc.d.fish b/share/completions/rc.d.fish deleted file mode 100644 index 2a34f0f5c..000000000 --- a/share/completions/rc.d.fish +++ /dev/null @@ -1,7 +0,0 @@ - -complete -c rc.d -xa 'list start stop restart help' -n 'not __fish_seen_subcommand_from list start stop restart' -complete -c rc.d -s s -l started -n '__fish_seen_subcommand_from list start stop restart' -d 'Filter started daemons' -complete -c rc.d -s S -l stopped -n '__fish_seen_subcommand_from list start stop restart' -d 'Filter stopped daemons' -complete -c rc.d -s a -l auto -n '__fish_seen_subcommand_from list start stop restart' -d 'Filter auto started daemons' -complete -c rc.d -s A -l noauto -n '__fish_seen_subcommand_from list start stop restart' -d 'Filter manually started daemons' -complete -c rc.d -n '__fish_seen_subcommand_from list start stop restart' -xa '( __fish_print_arch_daemons )' diff --git a/share/functions/__fish_print_arch_daemons.fish b/share/functions/__fish_print_arch_daemons.fish deleted file mode 100644 index 3a683c149..000000000 --- a/share/functions/__fish_print_arch_daemons.fish +++ /dev/null @@ -1,4 +0,0 @@ -function __fish_print_arch_daemons --description 'Print arch daemons' - find /etc/rc.d/ -executable -type f -printf '%f\n' - -end