Orbits  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
Classes | Variables
pip.commands.completion Namespace Reference

Classes

class  CompletionCommand
 

Variables

string BASE_COMPLETION
 
dictionary COMPLETION_SCRIPTS
 

Variable Documentation

string pip.commands.completion.BASE_COMPLETION
Initial value:
1 = """
2 # pip %(shell)s completion start%(script)s# pip %(shell)s completion end
3 """
dictionary pip.commands.completion.COMPLETION_SCRIPTS
Initial value:
1 = {
2  'bash': """_pip_completion(){ COMPREPLY=( $( COMP_WORDS="${COMP_WORDS[*]}" \\ COMP_CWORD=$COMP_CWORD \\ PIP_AUTO_COMPLETE=1 $1 ) )}complete -o default -F _pip_completion pip""", 'zsh': """function _pip_completion { local words cword read -Ac words read -cn cword reply=( $( COMP_WORDS="$words[*]" \\ COMP_CWORD=$(( cword-1 )) \\ PIP_AUTO_COMPLETE=1 $words[1] ) )}compctl -K _pip_completion pip"""}

Copyright 2014 Google Inc. All rights reserved.