Skip to content

Commit b1d163e

Browse files
Rogachscop
authored andcommitted
feat(rsync): add completion for --info values
1 parent df8cdda commit b1d163e

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

completions/rsync

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,27 @@ _rsync()
3131
COMPREPLY=($(compgen -W '{1..9}' -- "$cur"))
3232
return
3333
;;
34+
--info)
35+
_comp_delimited , -W '
36+
backup{,0}
37+
copy{,0}
38+
del{,0}
39+
flist{,0,1,2}
40+
misc{,0,1,2}
41+
mount{,0}
42+
name{,0,1,2}
43+
nonreg{,0,1}
44+
progress{,0,1,2}
45+
remove{,0}
46+
skip{,0,1,2}
47+
stats{,0,1,2,3}
48+
symsafe{,0}
49+
all{,0,1,2,3,4}
50+
none
51+
help
52+
'
53+
return
54+
;;
3455
esac
3556

3657
$split && return

0 commit comments

Comments
 (0)