Author Topic: Formatting option to Indent code inside a Preprocessing conditional  (Read 1574 times)

rgloden

  • Senior Community Member
  • Posts: 169
  • Hero Points: 5
Could we add a Formatting option to Indent code inside a Preprocessing conditional, e.g.

Code: [Select]
   while (1)
   {
      #ifdef KERNEL
         physicalAddress = 0x1000;
      #else
         physicalAddress = 0x2000;
      #endif
      ... other code ...
   }