diff options
author | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2015-09-21 21:38:41 +0900 |
---|---|---|
committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2015-09-21 21:38:41 +0900 |
commit | 9b35a04f98300469ad33b44849920c4c3cb2d986 (patch) | |
tree | 72305ac5e1c64c622df10e6eaa879d496b43ba37 | |
parent | 6fa5f0612b9866ead0859cd5bbbce9fd8c6488e2 (diff) | |
download | zsh-9b35a04f98300469ad33b44849920c4c3cb2d986.tar.gz zsh-9b35a04f98300469ad33b44849920c4c3cb2d986.tar.xz zsh-9b35a04f98300469ad33b44849920c4c3cb2d986.zip |
36556: complete two or more options for zsh
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | Completion/Unix/Command/_sh | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index f59377031..b6755caac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2015-09-21 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> + + * 36574: Completion/Unix/Command/_lldb: new completion for + the lldb debugger + + * 36556: Completion/Unix/Command/_sh: remove unnecessary + helpspec to '_argument --' + 2015-09-21 Peter Stephenson <p.stephenson@samsung.com> * unposted: Src/zsh.h: typo in 36559. diff --git a/Completion/Unix/Command/_sh b/Completion/Unix/Command/_sh index 21ebfc3b2..1b5112212 100644 --- a/Completion/Unix/Command/_sh +++ b/Completion/Unix/Command/_sh @@ -24,6 +24,6 @@ fi local ret=$? -[[ $service == zsh ]] && _arguments -S -s -- '*:' && ret=0 +[[ $service == zsh ]] && _arguments -S -s -- && ret=0 return ret |