How to remove function variable descriptions in ESP-IDE 4.1.0
Posted: Fri Mar 20, 2026 2:02 am
I have tried to find an answer both here and for the Eclipse IDE but I have not found the answer so far. I have turned nearly everything off in the Window > Preferences section and still get the description added to the code snippet below.
The italics is auto-filled and cannot be edited or even selected. It is a description of each variable determined by the IDE. I would prefer to put the command on one line, but this italics garbage takes up so much space I have to put it across lines.
Any tips?
The italics is auto-filled and cannot be edited or even selected. It is a description of each variable determined by the IDE. I would prefer to put the command on one line, but this italics garbage takes up so much space I have to put it across lines.
Any tips?
Code: Select all
xTaskCreate(&servo_mgmt,
[i]pcName:[/i]"linear_servo",
[i]usStackDepth:[/i]2048,
[i]pvParameters:[/i]NULL,
[i]uxPriority:[/i]5,
[i]pxCreatedTask:[/i]NULL
);