Been through several guides to set up some simple Vim abbreviations. I'm almost there, I just can't seem to find how to end IN insert mode.
What I have:
iab cl console.log()<Esc>F%s<c-o>:call getchar()<CR><Left><Left>
What happens:
cl expands to console.log() and the cursor is placed over )
What I want to happen:
Same thing except I want to enter insert mode.
What I've tried:
After <Left> I've tried: <Insert>, i, and <Ins> with no luck.