From eca213e0179db8a886f5337ab5ba5dc853e378f8 Mon Sep 17 00:00:00 2001 From: Shohei YOSHIDA Date: Sun, 8 Mar 2026 23:01:45 +0900 Subject: [PATCH] Fix gtk-launch completion - fix quoting --- src/_gtk-launch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/_gtk-launch b/src/_gtk-launch index 82f7119..30a7f41 100644 --- a/src/_gtk-launch +++ b/src/_gtk-launch @@ -46,9 +46,9 @@ _gtk-launch() { _arguments -S -A "-*" \ '(- *)'{-h,--help}'[Show help options]' \ '(- *)'{-v,--version}'[Show program version]' \ - '(- *)'--help-all'[Show all help options]' \ - '(- *)'--help-gtk'[Show GTK+ Options]' \ - '(- *)'--display='[X display to use]:display:_x_display' \ + '(- *)--help-all[Show all help options]' \ + '(- *)--help-gtk[Show GTK+ Options]' \ + '(- *)--display=[X display to use]:display:_x_display' \ '--class=[Program class as used by the window manager]:class' \ '--name=[Program name as used by the window manager]:name' \ '--gtk-module=[Load additional GTK+ modules]:module' \