
}«‘_•	  ã               @   sd   d  d l  m Z d  d l Z d  d l m Z d Z d d d d d	 d
 i Z Gd d „  d e ƒ Z d S)é    )Úabsolute_importN)ÚCommandzJ
# pip %(shell)s completion start%(script)s# pip %(shell)s completion end
ÚbashzÏ
_pip_completion()
{
    COMPREPLY=( $( COMP_WORDS="${COMP_WORDS[*]}" \
                   COMP_CWORD=$COMP_CWORD \
                   PIP_AUTO_COMPLETE=1 $1 ) )
}
complete -o default -F _pip_completion pip
Úzshzñ
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
Úfisha  
function __fish_complete_pip
    set -lx COMP_WORDS (commandline -o) ""
    set -lx COMP_CWORD (math (contains -i -- (commandline -t) $COMP_WORDS)-1)
    set -lx PIP_AUTO_COMPLETE 1
    string split \  -- (eval $COMP_WORDS[1])
end
complete -fa "(__fish_complete_pip)" -c pip
c                   s@   e  Z d  Z d Z d Z d Z ‡  f d d †  Z d d „  Z ‡  S)ÚCompletionCommandz3A helper command to be used for command completion.Ú
completionz-A helper command used for command completion.c                s±   t  t |  ƒ j | | Ž  |  j } | j d d d d d d d d d	 d
 ƒ| j d d d d d d d d d	 d ƒ| j d d d d d d d d d	 d ƒ|  j j d | ƒ d  S)Nz--bashz-bÚactionÚstore_constÚconstr   ÚdestÚshellÚhelpzEmit completion code for bashz--zshz-zr   zEmit completion code for zshz--fishz-fr   zEmit completion code for fishr   )Úsuperr   Ú__init__Úcmd_optsÚ
add_optionÚparserÚinsert_option_group)ÚselfÚargsÚkwr   )Ú	__class__© ú6/tmp/pip-build-3_sjtvrs/pip/pip/commands/completion.pyr   -   s*    				zCompletionCommand.__init__c             C   sŠ   t  j ƒ  } d d „  t | ƒ Dƒ } | j | k ri t  j | j d ƒ } t t d | d | j i ƒ n t j j	 d d j
 | ƒ ƒ d S)	z-Prints the completion code of the given shellc             S   s   g  |  ] } d  | ‘ q S)z--r   )Ú.0r   r   r   r   ú
<listcomp>J   s   	 z)CompletionCommand.run.<locals>.<listcomp>Ú Úscriptr   zERROR: You must pass %s
z or N)ÚCOMPLETION_SCRIPTSÚkeysÚsortedr   ÚgetÚprintÚBASE_COMPLETIONÚsysÚstderrÚwriteÚjoin)r   Úoptionsr   ÚshellsÚshell_optionsr   r   r   r   ÚrunG   s     	zCompletionCommand.run)Ú__name__Ú
__module__Ú__qualname__Ú__doc__ÚnameÚsummaryr   r,   r   r   )r   r   r   (   s
   r   )Ú
__future__r   r%   Úpip.basecommandr   r$   r   r   r   r   r   r   Ú<module>   s   
	