Re: sh indent script

2006-07-29 Thread Edward L. Fox
On 7/20/06, Edward L. Fox <[EMAIL PROTECTED]> wrote: Hi VIMmers, The default sh indent script in VIM7 indent the following sample file this way: 8< #!/bin/sh SYSTEM=`uname -s` case $SYSTEM in Linux) echo "My system is Linux

sh indent script

2006-07-20 Thread Edward L. Fox
Hi VIMmers, The default sh indent script in VIM7 indent the following sample file this way: 8< #!/bin/sh SYSTEM=`uname -s` case $SYSTEM in Linux) echo "My system is Linux" echo "Do Linux stuff here..." ;; FreeBSD