Skip to content

Commit

Permalink
Update example to achieve bash 3.2 compatibility as per alexisdimi's …
Browse files Browse the repository at this point in the history
…suggestion in Issue #168
  • Loading branch information
Mark Rogers committed Oct 3, 2019
1 parent 58211c3 commit 02c068f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/jupyter-completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ _jupyter()
COMPREPLY=( $(compgen -W "${sub}" -- ${cur}) )
else
local IFS=$'\n'
compopt -o filenames
COMPREPLY=( $(compgen -f -- ${cur}) )
COMPREPLY=( $(compgen -o filenames -f -- ${cur}) )
fi
fi

Expand Down

0 comments on commit 02c068f

Please sign in to comment.