File indexing completed on 2024-04-21 16:29:41

0001 #compdef dolphin
0002 
0003 # SPDX-FileCopyrightText: 2022 ivan tkachenko <me@ratijas.tk>
0004 #
0005 # SPDX-License-Identifier: GPL-2.0-or-later
0006 
0007 local ret=1
0008 
0009 _arguments -C \
0010   '(* -)'{-h,--help}'[Displays help on commandline options]' \
0011   '--select[The files and folders passed as arguments will be selected.]' \
0012   '--split[Dolphin will get started with a split view.]' \
0013   '--new-window[Dolphin will explicitly open in a new window.]' \
0014   '--daemon[Start Dolphin Daemon (only required for DBus Interface).]' \
0015   '*:: :_urls' \
0016   && ret=0
0017 
0018 return $ret