In our C++ code base we keep 99 column lines but 79-some-odd column multiline comments. Is there a good strategy to do this automagically? I assume the modes are already known because of smart comment line-joining and leading * insertion.
|
Apparently both code and comments use the same
Here the critical part is detecting when we are in a comment. If you only format comments this way:
my regex should work... unless you have lines in the code starting with
the regex is even simpler to write. If you want to cover all possible situations, including corner cases, well... I guess the best thing would be to define a separate detection function and call that from the |
||||
|
I came across this same problem and think that I have found a suitable solution. What I wanted my comments to word wrap so that when I'm typing I don't have to worry about formating text. This works well with comment text. But I wasn't comfortable with having vim format my code. So I wanted vim to highlight every thing in red after x column. To do this with only cpp code you would add the following to your ~/.vim/ftdetect/cpp.vim file.
note: You may have to create the file and folders if they don't exist. If you have problems with this make sure that you have formatoptions set to:
You can see this by running :set formatoptions inside of vim. |
|||
|
formatexprorformatprg, however this will require writing a vim plugin or an external formatter programm, see help for details. I do not know any plugins that will do this for you, but I am not sure that they does not exist. – ZyX Aug 13 '10 at 18:58