diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2008-10-15 06:17:39 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2008-10-15 06:17:39 +0000 |
commit | b37952c37b6d525e34d84f90306227ab8f6575be (patch) | |
tree | a6cd12922584d7ebd139a7d4a5cb490c13793fc6 /Completion/Unix/Command | |
parent | ac54a0f98388763aa01e16de33e3c547ee76c13b (diff) | |
download | zsh-b37952c37b6d525e34d84f90306227ab8f6575be.tar.gz zsh-b37952c37b6d525e34d84f90306227ab8f6575be.tar.xz zsh-b37952c37b6d525e34d84f90306227ab8f6575be.zip |
Phil Pennock: 25854: fix Devel module completion for "perl -d:".
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_perl b/Completion/Unix/Command/_perl index 05b386d11..fd1fd2a41 100644 --- a/Completion/Unix/Command/_perl +++ b/Completion/Unix/Command/_perl @@ -10,7 +10,7 @@ _perl () { '-a[autosplit mode with -n or -p (splits $_ into @F)]' \ "-c[check syntax only (runs BEGIN and END blocks)]" \ '-d[run scripts under debugger]' \ - '-d\:-[run under control of a debugging/tracing module]:debugging/tracing module:_perl_modules' \ + '-d\:-[run under control of a debugging/tracing module]:debugging/tracing module:_perl_modules --strip-prefix --perl-hierarchy=Devel' \ '-D-:set debugging flags (argument is a bit mask or flags): ' \ "*-e+:one line of script. Several -e's allowed. Omit [programfile]." \ "-F-:split() pattern for autosplit (-a). The //'s are optional.: " \ |