On Tuesday, April 23, 2013 8:40:51 AM UTC-5, sinbad wrote: > the following are the comments and formatoptions > > comments=sO:* -,mO:* ,exO:*/,s1:/*,mb:*,ex:*/,:// > formatoptions=croql > > > iab com /*<CR><CR>*/<Up> > > when i type com, i was expecting > > /* > * > */ > > but i'm getting > > /* > * > * */ > > how to fix this.
Because you have the 'x' in your comment string "ex" parts, you can end a comment by typing only the last character on the new line as the first action. See :help format-comments. Specifically, your abbreviation should not be: /*<CR><CR>*/ It should instead be: /*<CR><CR>/ Because Vim will automatically end the comment on pressing '/' but will insert the text literally if you press */ instead. -- -- You received this message from the "vim_use" 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_use" 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/groups/opt_out.
