use io;
use Result;
use CommandFactory;
use Shell;
use crateCli;
/// Lets git's bash completion handle `git stk <TAB>` by delegating to the
/// clap-generated completer, which only knows the `git-stk` binary form.
const BASH_GIT_SHIM: &str = r#"
_git_stk() {
COMP_WORDS=("git-stk" "${COMP_WORDS[@]:2}")
COMP_CWORD=$((COMP_CWORD - 1))
_git-stk
}
"#;