diff options
-rwxr-xr-x | vimpager | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -58,9 +58,9 @@ if do_ps | grep -q '\(py\(thon\|doc\)\|man\|perl\(doc\)\?\([0-9.]*\)\?\)\>'; the proc=$$ while next_parent=`ppid $proc` && [ $next_parent != 1 ]; do if pproc $next_parent | grep -q 'man\>'; then - cat $file | sed -e 's/\[[^m]*m//g' | sed -e 's/.//g' | less_vim -c 'set ft=man' -; exit + cat $file | sed -e 's/\[[^m]*m//g; s/.//g' | less_vim -c 'set ft=man' -; exit elif pproc $next_parent | grep -q 'py\(thon\|doc\)\>'; then - cat $file | sed -e 's/\[[^m]*m//g' | sed -e 's/.//g' | less_vim -c 'set ft=man' -; exit + cat $file | sed -e 's/\[[^m]*m//g; s/.//g' | less_vim -c 'set ft=man' -; exit elif pproc $next_parent | grep -q 'perl\(doc\)\?\([0-9.]*\)\?\>'; then cat $file | sed -e 's/.//g' | less_vim -c 'set ft=man' -; exit fi @@ -68,7 +68,8 @@ if do_ps | grep -q '\(py\(thon\|doc\)\|man\|perl\(doc\)\?\([0-9.]*\)\?\)\>'; the done fi -less_vim "$file" +cat $file | sed -e 's/\[[^m]*m//g; s/.//g' | less_vim -; exit +#less_vim "$file" # CONTRIBUTORS: # |