From 35a96bde514a8897f6f0fcc41c5833bf63df2e2a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 18:29:01 +0200 Subject: Adding upstream version 1.0.2. Signed-off-by: Daniel Baumann --- share/bash-completion/completions/inkscape | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 share/bash-completion/completions/inkscape (limited to 'share/bash-completion/completions') diff --git a/share/bash-completion/completions/inkscape b/share/bash-completion/completions/inkscape new file mode 100644 index 0000000..330d4ea --- /dev/null +++ b/share/bash-completion/completions/inkscape @@ -0,0 +1,26 @@ +# inkscape(1) completion -*- shell-script -*- + +_have inkscape && +_inkscape() +{ + local cur + + COMPREPLY=() + cur=${COMP_WORDS[COMP_CWORD]} + + + if [[ "$cur" == -* ]]; then + COMPREPLY=( $( compgen -W '-? --help --usage -V --version \ + -z --without-gui -g --with-gui -f --file= -p --print= \ + -e --export-png= -d --export-dpi= -a --export-area= \ + -w --export-width= -h --export-height= -i --export-id= \ + -j --export-id-only -t --export-use-hints -b --export-background= \ + -y --export-background-opacity= -l --export-plain-svg= -s --slideshow' \ + -- $cur \ + ) ) + else + _filedir '@(ai|ani|bmp|cur|dia|eps|gif|ggr|ico|jpe|jpeg|jpg|pbm|pcx|pdf|pgm|png|ppm|pnm|ps|ras|sk|svg|svgz|targa|tga|tif|tiff|txt|wbmp|wmf|xbm|xpm)' + fi + +} +complete -F _inkscape $filenames inkscape -- cgit v1.2.3