You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to vim_dev
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"
Ivan Krasilnikov
unread,
Apr 11, 2012, 11:00:22 PM4/11/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to vim...@googlegroups.com
On Thu, Apr 12, 2012 at 02:43, KyleFlavin <kyle....@gmail.com> wrote: > It doesn't seem to like the line: > > done <<< "$IP_RANGES"
Try putting "let g:is_bash=1" in your vimrc. This syntax is a bash extension.