Skip to content

Commit

Permalink
bash: added completion for "hg qc"
Browse files Browse the repository at this point in the history
  • Loading branch information
helino committed Oct 21, 2014
1 parent 59cfb26 commit 6a64e72
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ fi
alias g='grepless'
alias ff='firefox'
alias fn='find . -name '

# Completion for the 'hg qc' alias
_hg_cmd_qc() {
COMPREPLY=( $( compgen -W "$(_hg_cmd qqueue --quiet)" "${cur}" ) )
}

0 comments on commit 6a64e72

Please sign in to comment.