In my previous post I tried using code snippet to handle multiline comments insertion, but I didn't achieve removing those comments. What I want to achieve is something like the default behavior for xml files when using the comment and uncomment buttons. Using macros I can get it! So one macro to put comment (modified from the sample macro in vs) and one to uncomment. The first surround the start and end selection with comment markers (for c# /* */). The second takes the caret position and strips the previous start comment marker (/*) and the...