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
We sometimes want to remove a line (most likely based on a QueryMatch).
Would be nice to have a removeLines(RangeMark) method, that removes the query as well as all comments attached to it (either // or /* */).
Also remove the comment on the same line.
Something like that:
// This should stayRemoveThisLine(); // <- only this line// This should be removedRemoveThisOtherLine(); // <- this line + the comment aboveRemoveAnotherLine(); // Also remove this comment
The text was updated successfully, but these errors were encountered:
We sometimes want to remove a line (most likely based on a QueryMatch).
Would be nice to have a
removeLines(RangeMark)
method, that removes the query as well as all comments attached to it (either // or /* */).Also remove the comment on the same line.
Something like that:
The text was updated successfully, but these errors were encountered: