Bash completion
- Added filename completion for the merge command
This commit is contained in:
@@ -117,6 +117,14 @@ _task()
|
|||||||
COMPREPLY=( $(compgen -W "${config}" -- ${cur}) )
|
COMPREPLY=( $(compgen -W "${config}" -- ${cur}) )
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
|
*)
|
||||||
|
case "${prev}" in
|
||||||
|
merge)
|
||||||
|
COMPREPLY=( $(compgen -o "default" -- ${cur}) )
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|||||||
Reference in New Issue
Block a user