Text decoration after braces?
Hi
You probaply know that ReSharper's code cleaner can add curly braces. I wonder if it also can decorate those braces like this:
Pre:
public void MyFuntion(){
if(some_bool){
}
}
Post:
public void MyFuntion(){
if(some_bool){
}//if
}//MyFunction
Any thoughts?
Please sign in to leave a comment.
Hello
There's no such functionality out-of-the box, but you can write a plug-in for ReSharper which would do that. Thank you!
Andrey Serebryansky
Senior Support Engineer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
Wow, how do I do that? Is there a link that describes how to write my own ReSharper plugin?
Found it: http://confluence.jetbrains.net/display/ReSharper/ReSharper+6+Plugin+Development
Thanks :-)