Quick answer: Construct 3 disabled action visually similar to a comment? The greyed-out style confuses readers - convert old code to explicit comments and delete the disabled actions.

Code review: 'is this action disabled or just a comment?' Both look greyed-out; intent unclear.

Convert to comment

Right-click disabled action > Add Comment. Type the explanation. Delete the action. Reader knows intent.

Or use TODO comments

Comments prefixed with TODO: are searchable. Add a date. Periodic cleanups become possible.

Don't ship disabled actions

Editor lets you. Don't. They confuse readers and they don't run; comments are clearer.

“Disabled code is code that lies about its purpose. Comments don't lie.”

Add a lint pass that flags disabled actions. Project hygiene improves over time.

Related reading