From b90c0a0a09d41ee7d7b627a9b011f060441821af Mon Sep 17 00:00:00 2001 From: Adin Klotz Date: Thu, 20 Aug 2020 15:19:52 -0400 Subject: [PATCH] Zsh: Fix needing to press tab twice to complete gh I needed to actually call the completion function at the bottom (`$@` is the array of positional parameters, to get passed to the completion function) --- src/_gh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/_gh b/src/_gh index c6f9b23..f700153 100644 --- a/src/_gh +++ b/src/_gh @@ -526,3 +526,4 @@ function _gh_repo_view { '--help[Show help for command]' } +_gh "$@"