diff options
| author | Sebastien Alaiwan <sebastien.alaiwan@gmail.com> | 2014-02-22 20:26:55 +0100 |
|---|---|---|
| committer | Peter Stephenson <pws@zsh.org> | 2014-02-24 09:30:04 +0000 |
| commit | afe7ff6b5dc6e979aae1695635349a33468f7d12 (patch) | |
| tree | 5989a3732c47152a4bf76a66868548a137c88177 /Completion/Unix | |
| parent | 32427: avoid busy loop on closed descriptors for "zle -F" handlers (diff) | |
| download | zsh-afe7ff6b5dc6e979aae1695635349a33468f7d12.tar zsh-afe7ff6b5dc6e979aae1695635349a33468f7d12.tar.gz zsh-afe7ff6b5dc6e979aae1695635349a33468f7d12.tar.bz2 zsh-afe7ff6b5dc6e979aae1695635349a33468f7d12.tar.lz zsh-afe7ff6b5dc6e979aae1695635349a33468f7d12.tar.xz zsh-afe7ff6b5dc6e979aae1695635349a33468f7d12.tar.zst zsh-afe7ff6b5dc6e979aae1695635349a33468f7d12.zip | |
32642: improve bzr completion with directory path
Diffstat (limited to 'Completion/Unix')
| -rw-r--r-- | Completion/Unix/Command/_bzr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_bzr b/Completion/Unix/Command/_bzr index 23feb6f83..ab9fd728d 100644 --- a/Completion/Unix/Command/_bzr +++ b/Completion/Unix/Command/_bzr @@ -25,7 +25,7 @@ curcontext="${curcontext%:*:*}:bzr-$cmd:" (( $+functions[_bzr_unknownFiles] )) || _bzr_unknownFiles() { local fileList - fileList=(${(ps:\0:)"$(bzr ls --null --unknown)"}) + fileList=(${(ps:\0:)"$(bzr ls --null --unknown -R)"}) compadd -af fileList return 0 } @@ -41,7 +41,7 @@ _bzr_unknownRoot() { (( $+functions[_bzr_versionedFiles] )) || _bzr_versionedFiles() { local fileList - fileList=(${(ps:\0:)"$(bzr ls --null --versioned)"}) + fileList=(${(ps:\0:)"$(bzr ls --null --versioned -R)"}) compadd -af fileList return 0 } |
