How to set vim to not indent namespace content in C++?
namespace < identifier >
{
< statement_list > // Unwanted indentation
}
Surprisingly, 'cinoptions' doesn't provide a way to edit namespace content indentation.
|
How to set vim to not indent namespace content in C++?
Surprisingly, 'cinoptions' doesn't provide a way to edit namespace content indentation. |
||||
|
|
|
Not sure when it was introduced but my installed version of vim, v7.3.353 has a cino option that handles cpp namespace explicitly. I am currently using the example value:
and as per
The link the OP posted is for v7.3.162 |
|||||
|
|
cpp.vim will solve your problem, but if you don't want the full-blown Google coding style then just take a peek at the plugin source and see how it handles namespaces. It's super simple:
In essence all you do is match the last non-blank line against I essentially stole the code from the plugin, stripped anything that isn't namespace-related and renamed the indent function to |
|||||||
|
|
I use cpp.vim which is inspired by the Google C++ Style Guide. Among other things, that script does what you're asking. |
|||
|
|
|
I've configured vim to not indent for the namespace. These are the relevant lines in my vimrc:
Frankly, I don't remember how to interpet the
versus
Since I put the curly bracket on the next line exclusively for namespaces, it does what I want, but it might not work if you use that style for other function declarations, for, etc. |
|||||
|