A new coding assistance feature to join multiple adjacent lines of code together would be helpful.
Consider the following snippet:
int GetValue() const
{
return m_nValue;
}
After selecting those four lines in the editor and pressing a 'join lines' keyboard shortcut, the content of those lines will be collapsed, with unnecessary white space removed:
int GetValue() const {return m_nValue;}
Also, it would be nice to be able to join the 'current' line with the next one via a keyboard shortcut, without having to select those lines first.
I know there are VS extensions that can do this, but it would be nice if my favorite extension would support this feature.