diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2003-08-20 10:04:08 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2003-08-20 10:04:08 +0000 |
| commit | baa21b02adbc4151c99c372d69c03903ec90a38b (patch) | |
| tree | 7f218896caf3cb7a28fc83c132b8d79ee8ee93ff /Completion/Unix | |
| parent | 18947: also complete options using _arguments (diff) | |
| download | zsh-baa21b02adbc4151c99c372d69c03903ec90a38b.tar zsh-baa21b02adbc4151c99c372d69c03903ec90a38b.tar.gz zsh-baa21b02adbc4151c99c372d69c03903ec90a38b.tar.bz2 zsh-baa21b02adbc4151c99c372d69c03903ec90a38b.tar.lz zsh-baa21b02adbc4151c99c372d69c03903ec90a38b.tar.xz zsh-baa21b02adbc4151c99c372d69c03903ec90a38b.tar.zst zsh-baa21b02adbc4151c99c372d69c03903ec90a38b.zip | |
18942: Fix / suffix handling in _perforce
Diffstat (limited to 'Completion/Unix')
| -rw-r--r-- | Completion/Unix/Command/_perforce | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_perforce b/Completion/Unix/Command/_perforce index 71dcb44ec..cde4cf013 100644 --- a/Completion/Unix/Command/_perforce +++ b/Completion/Unix/Command/_perforce @@ -179,7 +179,7 @@ # # Much of the information from Perforce is provided by calls to p4 # commands. This is done via the _call_program interface, as described -# in the zshcompletesys manual page. Hence a suitable context with the +# in the zshcompsys manual page. Hence a suitable context with the # `command' style allows the user to take control of this call. # The tags used are the name of the p4 command, or in the case of # calls to help subcommands, `help-<subcommand>'. Note that if the @@ -540,6 +540,11 @@ _perforce_file_suffix() { # Normal suffix removal LBUFFER="$LBUFFER[1,-2]" fi + elif [[ $LBUFFER[-1] = / ]]; then + # Normal suffix removal for directories. + if [[ $KEYS = (*[^[:print:]]*|[[:blank:]\;\&\|/]) ]]; then + LBUFFER="$LBUFFER[1,-2]" + fi fi } |
