zshrc: add deborphan, pal and hnb to compdef _gnu_generic
authorMichael Prokop <mika@grml.org>
Fri, 5 Jun 2009 07:37:04 +0000 (09:37 +0200)
committerMichael Prokop <mika@grml.org>
Fri, 5 Jun 2009 07:37:04 +0000 (09:37 +0200)
debian/changelog
etc/zsh/zshrc

index 1c0ed15..f742e72 100644 (file)
@@ -1,11 +1,16 @@
 grml-etc-core (0.3.73) UNRELEASED; urgency=low
 
+  [ Frank Terbeck ]
   * zshrc: Fix a problem when calling compinit can seem to cause zsh startup
     to hang forever. Reported by Rasmus Steinke.
   * zshrc: Fix problems related to TERM=mostlike in zshrc. Again reported by
     Rasmus Steinke.
 
- -- Frank Terbeck <ft@grml.org>  Tue, 02 Jun 2009 16:36:32 +0200
+  [ Michael Prokop ]
+  * zshrc: add deborphan, pal and hnb to compdef _gnu_generic. Thanks for
+    the suggestion to Carsten Hey.
+
+ -- Michael Prokop <mika@grml.org>  Fri, 05 Jun 2009 09:35:58 +0200
 
 grml-etc-core (0.3.72) unstable; urgency=low
 
index 6964210..30922f7 100644 (file)
@@ -2613,7 +2613,8 @@ grmlcomp() {
 
     # use generic completion system for programs not yet defined; (_gnu_generic works
     # with commands that provide a --help option with "standard" gnu-like output.)
-    for compcom in tail head feh cp mv df stow uname ipacsum fetchipac; do
+    for compcom in cp deborphan df feh fetchipac head hnb ipacsum mv \
+                   pal stow tail uname ; do
         [[ -z ${_comps[$compcom]} ]] && compdef _gnu_generic ${compcom}
     done; unset compcom