mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
update open
to use argparse
This commit is contained in:
parent
e8243af20b
commit
51a52a7286
1 changed files with 7 additions and 7 deletions
|
@ -2,16 +2,16 @@
|
|||
# This allows us to use 'open FILENAME' to open a given file in the default
|
||||
# application for the file.
|
||||
#
|
||||
|
||||
if not command -sq open
|
||||
function open --description "Open file in default application"
|
||||
if count $argv >/dev/null
|
||||
switch $argv[1]
|
||||
case -h --h --he --hel --help
|
||||
set -l options 'h/help'
|
||||
argparse -n open --min-args=1 $options -- $argv
|
||||
or return
|
||||
|
||||
if set -q _flag_help
|
||||
__fish_print_help open
|
||||
return 0
|
||||
end
|
||||
end
|
||||
|
||||
if type -q -f cygstart
|
||||
for i in $argv
|
||||
|
|
Loading…
Reference in a new issue