diff options
| author | Daniel Friesel <derf@derf.homelinux.org> | 2009-03-22 13:17:10 +0100 | 
|---|---|---|
| committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-03-22 13:17:10 +0100 | 
| commit | cef704209d12374dceb99d320ee65b0ebe60d65f (patch) | |
| tree | a9260068f66dbeca8dd44407a2f4d7fbcb275d32 /etc | |
| parent | 63eb4e7e440945a63672492b99844c5feae0a60c (diff) | |
finfo: Skip #compdef / #autoload
Diffstat (limited to 'etc')
| -rwxr-xr-x | etc/functions/finfo | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/etc/functions/finfo b/etc/functions/finfo index a73606d..b771ef8 100755 --- a/etc/functions/finfo +++ b/etc/functions/finfo @@ -8,5 +8,6 @@ whichf $1 &> /dev/null || return 1  while read line; do  	[[ $line == \#* ]] || break  	[[ $line == *vim:ft=* ]] && continue +	[[ $line == \#(autoload|compdef)* ]] && continue  	echo ${line#(\#|)\# }  done < $(whichf $1)  | 
