diff options
| author | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2018-07-19 17:04:09 +0900 |
|---|---|---|
| committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2018-07-19 17:04:09 +0900 |
| commit | 71bc1296edfc548751354f4bf5832aba3fcd0b95 (patch) | |
| tree | 967612b90000bf9d8c66807a4f7f8325b958c181 | |
| parent | 43187: Fix completion error about 'm' option of 'install' command (diff) | |
| download | zsh-71bc1296edfc548751354f4bf5832aba3fcd0b95.tar zsh-71bc1296edfc548751354f4bf5832aba3fcd0b95.tar.gz zsh-71bc1296edfc548751354f4bf5832aba3fcd0b95.tar.bz2 zsh-71bc1296edfc548751354f4bf5832aba3fcd0b95.tar.lz zsh-71bc1296edfc548751354f4bf5832aba3fcd0b95.tar.xz zsh-71bc1296edfc548751354f4bf5832aba3fcd0b95.tar.zst zsh-71bc1296edfc548751354f4bf5832aba3fcd0b95.zip | |
43189: _install: similar fix as 43187 for option -f
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Completion/Unix/Command/_install | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2018-07-19 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> + + * 43189: Completion/Unix/Command/_install: similar fix as 43187 + for option -f (_flags was renamed to _file_flags) + 2018-07-19 Yasuhiro KIMURA <yasu@utahime.org> * 43187: Completion/Unix/Command/_install: Fix completion error diff --git a/Completion/Unix/Command/_install b/Completion/Unix/Command/_install index 4feb34ebf..80a1b0c00 100644 --- a/Completion/Unix/Command/_install +++ b/Completion/Unix/Command/_install @@ -41,7 +41,7 @@ else args+=( ${common_args##((#s)|*\))(\*|)--*} '-B+[specify backup suffix for -b]:backup suffix' - '-f+[specify destination file flags]: :_flags' + '-f+[specify destination file flags]: :_file_flags' ) [[ $OSTYPE == dragonfly* ]] && args+=( '!-D+[no effect (compatibility with NetBSD)]: :_directories' |
