diff options
author | Marc Cornellà <marc.cornella@live.com> | 2016-06-20 22:19:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-20 22:19:02 +0200 |
commit | 9a61336d33a8a6258c0fb838bfa3c9c488e7d898 (patch) | |
tree | 4bcbf74913dcdc4e348c8b4c0d60f2e6659494bc /plugins | |
parent | 909fcef0469a2706508c0197e14aa45654702044 (diff) | |
download | zsh-9a61336d33a8a6258c0fb838bfa3c9c488e7d898.tar.gz zsh-9a61336d33a8a6258c0fb838bfa3c9c488e7d898.tar.bz2 zsh-9a61336d33a8a6258c0fb838bfa3c9c488e7d898.zip |
Fix man-preview completion definition
Related: #5179
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/osx/osx.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/osx/osx.plugin.zsh b/plugins/osx/osx.plugin.zsh index c66325cde..4dbc75787 100644 --- a/plugins/osx/osx.plugin.zsh +++ b/plugins/osx/osx.plugin.zsh @@ -175,7 +175,7 @@ function quick-look() { function man-preview() { man -t "$@" | open -f -a Preview } -compdef man-preview=man +compdef _man man-preview function vncviewer() { open vnc://$@ |