A while ago, I had to put

filetype plugin on

in my .vimrc for a plugin I use.

But this caused a change in autoindent, that drives me mad: Whenever I write a comment "//", and then press enter, vim autoindentation automatically enters another "//" in the next line. But hey, I am using one-line-comments, why would I use it again in the next line (ok, no discussion about that here ;))?

// This is a comment. <ENTER>
// <-- vim automatically puts '// ' there

What can I do to avoid this? I use the autoindent setting in my vim file. I already tried

filetype plugin indent off

but it does not work.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 4 down vote accepted

Take a look at :h formatoptions and :h fo-table. The options you need to turn off are r and o. Turning them off prevents vim from automatically inserting the comment leader (in this case "//") when you press enter in insert mode or when you press o or O in normal mode.

link|improve this answer
"set formatoptions=-or" did not work actually, even though the documentation says so. I am using "set formatoptions=tnq" now. Thanks! stackoverflow.com/questions/6076592/… was useful, as well. – knub Feb 18 at 10:06
feedback

See :help 'formatoptions' - I know how annoying this is!

Try this:

:set fo-=or
link|improve this answer
I actually like that feature. Every so often I have to hunt for this setting again to turn it on. :-) – Kristo Feb 17 at 18:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.