On Fri, Nov 07, 2014 at 06:57:00PM -0800, Yuri wrote: > I believe this line should work: > $ vim "+normal(<LINE>G<COLUMN>|)" <FILE> > But it doesn't place the cursor to the right position.
That's because you've added unnecessary ( and ) motions. Try just vim '+normal <LINE>G<COLUMN>|' <FILE> :normal is an ex command, not a function (which sould have required a :call anyway). Cheers, -- James GPG Key: 4096R/331BA3DB 2011-12-05 James McCoy <[email protected]> -- -- 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]. For more options, visit https://groups.google.com/d/optout.
