diff options
-rwxr-xr-x | etc/functions/finfo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/functions/finfo b/etc/functions/finfo index 694ab6c..87b8acd 100755 --- a/etc/functions/finfo +++ b/etc/functions/finfo @@ -8,5 +8,5 @@ typeset line while read line; do [[ $line == \#* ]] || break [[ $line == *vim:ft=* ]] && continue - echo $line + echo ${line#(\#|)\# } done < $(whichf $1) |