You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clean up removes trailing spaces for deleted statement but not trailing new lines, so for the code:
publicvoidDeletionStatement(){vara=10;//This statement has trailing commentConsole.WriteLine("Badger");if(1==1)//kdkdkdk {Console.WriteLine("In If");}varb=20;varc=30;}
Current correct space trailing space deletion:
Deleting statement var a = 10; using "chuck state red" removes the space between the statement and its trailing comment, and deleting var b = 20; using "chuck state vest" gives
publicvoidDeletionStatement(){//This statement has trailing commentConsole.WriteLine("Badger");if(1==1)//kdkdkdk {Console.WriteLine("Badger");}varc=30;}
Incorrect line deletion current behaviour:
But deleting statement Console.WriteLine("Badger"); using "chuck state ..." leaves an empty line:
publicvoidDeletionStatement(){vara=10;//This statement has trailing commentif(1==1)//kdkdkdk {Console.WriteLine("In If");}varb=20;varc=30;}
Likewise deleting the if statement leaves:
publicvoidDeletionStatement(){vara=10;//This statement has trailing commentConsole.WriteLine("Badger");varb=20;varc=30;}
Desired Behaviour
Where the commands should leave:
publicvoidDeletionStatement(){vara=10;//This statement has trailing commentif(1==1)//kdkdkdk {Console.WriteLine("In If");}varb=20;varc=30;}
and
publicvoidDeletionStatement(){vara=10;//This statement has trailing commentConsole.WriteLine("Badger");varb=20;varc=30;}
respectively.
The text was updated successfully, but these errors were encountered:
Clean up not removing empty lines:
Clean up removes trailing spaces for deleted statement but not trailing new lines, so for the code:
Current correct space trailing space deletion:
Deleting statement
var a = 10;
using "chuck state red" removes the space between the statement and its trailing comment, and deletingvar b = 20;
using "chuck state vest" givesIncorrect line deletion current behaviour:
But deleting statement
Console.WriteLine("Badger");
using "chuck state ..." leaves an empty line:Likewise deleting the if statement leaves:
Desired Behaviour
Where the commands should leave:
and
respectively.
The text was updated successfully, but these errors were encountered: