If "-o bashdefault" isn't possible, use old "-o default" only. (this patch inspired by similar mechanism in Mercurial bash completion script) Signed-off-by: Ted Pavlic <ted@xxxxxxxxxxxxx> --- This patch corrects a bug in the previous one of the same name. In particular, the second "complete" lacked the "||" in front of it needed for proper operation. The first complete command should fail over to the second if "bashdefault" isn't available. stgit/completion.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/stgit/completion.py b/stgit/completion.py index b3fd282..38f0670 100644 --- a/stgit/completion.py +++ b/stgit/completion.py @@ -129,7 +129,8 @@ def main_switch(commands): 'esac') def install(): - return ['complete -o default -F _stg stg'] + return ['complete -o bashdefault -o default -F _stg stg 2>/dev/null \\', [ + '|| complete -o default -F _stg stg' ] ] def write_completion(f): commands = stgit.commands.get_commands(allow_cached = False) -- 1.6.1.213.g28da8 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html