I have some problems with indentation when there is some brace in
comment like in the two examples where we get this indentation :
int main(){
//}
int a=0;
return a;
}
same with the code
int main(){
int a;
//}
a=0;
return a;
}
If there is a closing brace in the comment, vim match it with the
corresponding opening brace outside the comment region.
I think that brace in comment must match only with brace in comment.
--
setog3
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---