T O P I C R E V I E W |
biznok |
Posted - Jan 28 2015 : 7:57:03 PM With the newest version (2052), I have a number of difficulties from auto corrections of Visual Assist, which are not good to me. I am using VS2014.
The annoying two features are the follows. 1. Correction for 'for' loop statement, such as converting for (int i=0 ; i<k ; i++) into for (int i = 0; i < k; i++) I prefer the former style, but VAX converts it into the latter form and I can't find the way to disable this. 2. Removal of multiple whitespaces for inter-alignement, such as converting int i = 0; to int i = 0; To multiple variables to be aligned, I usually insert multiple whitespaces such as tabs or spaces, but it forcely removes all of them, and also, I can't find the way to disable this.
Is there any suggestion to disable this feature? Thanks. |
2 L A T E S T R E P L I E S (Newest First) |
biznok |
Posted - Feb 09 2015 : 01:43:41 AM quote: Originally posted by accord
Visual Studio 2013 has introduced a number of auto corrections (formatting), which you use control here:
Tools -> Options... -> Text Editor -> C/C++ -> Formatting
It worked perfectly to me. Thanks a lot! |
accord |
Posted - Feb 04 2015 : 08:43:40 AM Visual Studio 2013 has introduced a number of auto corrections (formatting), which you use control here:
Tools -> Options... -> Text Editor -> C/C++ -> Formatting |
|
|