I like the VAX function Surround selection on / very much. What I do not like it the fact it does not respect my indenting style. It adds // on the very beginning of the line, while I would often like to add it after tabs.
Instead of void FileServerST::SubmitRequests()
{
// ProcessRequests();
}
I would like to see void FileServerST::SubmitRequests()
{
//ProcessRequests();
}
I know and understand WT stance about adding options, and I therefore do not suggest this, but maybe VAX could scan the source to check what my indentation style is? (The same is true for #if or /* - and do not tell me my indenting style is strange - maybe it is, but who is VAX to tell me so? :) )