The following code throws off the syntax coloring on my gVim, run from
Windows 7.  I'm using version 7.3:

function find_locale() {
    while read -r LOC NETW REALM; do
        if [ $1 == "$NETW" ]; then
            return 0
        fi
    # problem begins on the line below
    #done <<< "$IP_RANGES"
    done

    return 1
}

It doesn't seem to like the line:

done <<< "$IP_RANGES"

-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to