diff options
Diffstat (limited to 'etc/functions')
-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) |