Monday, November 16, 2015

auto indentation corrupted after comment block in c++ file

Hi all,

I want to auto indent the following file:

class X
{
public:
void foo()
{
}

/*
Check
After this comment block the indentation changes
Next method goes to previous column
*/
void bar() //<<< WRONG INDENTATION HERE after comment block
{
}
};

I use "gg=G" to format the file. As you can see, after the comment block the indentation changes back one column which is
not what I want.

Any idea how to change that strange behavior?

Thanks
Klaus

--
--
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 vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments: