Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

PATCH: _make MACRO=VALUE



I think the following patch is useful to handle "make MACRO=VALUE"
where VALUE is a path.

--- Completion/User/_make-	Thu Jul 22 20:01:58 1999
+++ Completion/User/_make	Thu Jul 22 20:05:36 1999
@@ -20,5 +20,5 @@
 
   [[ -n "$file" ]] &&
     compadd - $(awk '/^[a-zA-Z0-9][^\/ 	]+:/ {print $1}' FS=: $file) && ret=0
-  (( ret )) && _files
+  (( ret )) && { compset -P 1 '*\='; _files }
 fi

-- 
Tanaka Akira



Messages sorted by: Reverse Date, Date, Thread, Author