Skip to content

Instantly share code, notes, and snippets.

@nkonev
Created October 27, 2020 12:19
Show Gist options
  • Save nkonev/94bcfa9739525b6c532917fd8b1132ed to your computer and use it in GitHub Desktop.
Save nkonev/94bcfa9739525b6c532917fd8b1132ed to your computer and use it in GitHub Desktop.

git

source /usr/local/Cellar/git/2.29.1/etc/bash_completion.d/git-completion.bash

brew

https://docs.brew.sh/Shell-Completion

if type brew &>/dev/null; then
  HOMEBREW_PREFIX="$(brew --prefix)"
  if [[ -r "${HOMEBREW_PREFIX}/etc/profile.d/bash_completion.sh" ]]; then
    source "${HOMEBREW_PREFIX}/etc/profile.d/bash_completion.sh"
  else
    for COMPLETION in "${HOMEBREW_PREFIX}/etc/bash_completion.d/"*; do
      [[ -r "$COMPLETION" ]] && source "$COMPLETION"
    done
  fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment