Is "for (i = 0; i < len; i++, idx++)" OK style in vim?

-ernie

I'm looking at a change to a vim "C" file. It currently looks like

    for (i = 0; i < len; i++) {
        // stuff

        // more stuff

        ++idx;
    }

I need to make a change, the most clear (I think) is

    for (i = 0; i < len; i++, idx++) {
        // stuff

        if (cond)
            continue;

        // more stuff
    }

--
--
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

--- You received this message because you are subscribed to the Google Groups "vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/9a3c2ea2-8cf9-fc33-54b6-8488e4e1743e%40raelity.com.

Raspunde prin e-mail lui