From 07297a7870debcfe392d10c17bb8eb23921ca024 Mon Sep 17 00:00:00 2001 From: Junya Okabe Date: Wed, 19 Jun 2024 02:44:32 +0900 Subject: [PATCH] feat: add support for zsh --- misc/zsh/_ghq | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/misc/zsh/_ghq b/misc/zsh/_ghq index 40ce319..e75b65f 100644 --- a/misc/zsh/_ghq +++ b/misc/zsh/_ghq @@ -51,6 +51,12 @@ function _ghq () { '(-)*:: :->null_state' \ && ret=0 ;; + (rm) + _arguments -C \ + '--dry-run[Do not remove actually]' \ + '(-)*:: :->null_state' \ + && ret=0 + ;; (help|h) __ghq_commands && ret=0 ;;