%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /usr/local/share/zsh/5.8/functions/Completion/Zsh/
Upload File :
Create Path :
Current File : //usr/local/share/zsh/5.8/functions/Completion/Zsh/_globflags

#autoload

# Complete 'globbing flags', i.e., '(#x)'; everything up to the '#' will
# have been "compset -P"'d by the caller.

local ret=1
local -a flags

if compset -P a; then
  _message -e number 'errors'
  return
elif compset -P q; then
  _globquals
  return
elif compset -P 'c[0-9]##,'; then
  _message -e number 'max repetitions'
  return
elif compset -P c; then
  _message -e number 'repetitions (min or exact)'
  return
fi

flags=(
  'i:case insensitive'
  'l:lower case characters match uppercase'
  'I:case sensitive matching'
  's:match start of string'
  'e:match end of string'
  'U:consider all characters to be one byte'
  'u:support multibyte characters in pattern'
)
[[ $compstate[context] = condition ]] && flags+=(
  'b:activate backreferences'
  'B:deactivate backreferences'
  'm:set reference to entire matched data'
  'M:deactivate m flag'
)

_describe -t globflags "glob flag" flags -Q -S ')' && ret=0
flags=(
  'a:approximate matching'
  'q:introduce glob qualifier'
  'c:match repetitions of preceding pattern'
)
_describe -t globflags "glob flag" flags -Q -S '' && ret=0

return ret

Zerion Mini Shell 1.0