Current Path :
/
usr
/
share
/
zsh
/
5.0.2
/
functions
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//usr/share/zsh/5.0.2/functions/_delimiters
#autoload # Simple function to offer delimiters for modifiers and qualifers. # Single argument is tag to use. local expl local -a list zstyle -a ":completion:${curcontext}:$1" delimiters list || list=(: + / - %) if (( ${#list} )); then _wanted delimiters expl delimiter compadd -S '' -a list else _message delimiter fi