mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-27 16:50:58 +01:00
zsh-3.1.5-pws-8
This commit is contained in:
parent
850fb2e7f9
commit
ba4f5e80ec
98 changed files with 1624 additions and 149 deletions
13
Functions/Completion/__default
Normal file
13
Functions/Completion/__default
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#function --default--
|
||||
|
||||
# We first try the `compctl's. This is without first (-T) and default (-D)
|
||||
# completion. If you want them add `-T' and/or `-D' to this command.
|
||||
# If there is a `compctl' for the command we are working on, we return
|
||||
# immediatly. If you want to use new style completion anyway, remove the
|
||||
# `|| return'. Also, you may want to use new style completion if the
|
||||
# `compctl' didn't produce any matches. In that case remove the `|| return'
|
||||
# and at the line `[[ -nmatches 0 ]] || return' after `compcall'.
|
||||
|
||||
compcall || return
|
||||
|
||||
__files
|
||||
Loading…
Add table
Add a link
Reference in a new issue