0

Is there a way/tool to automatically remove blank lines on kdevelop Version 4.3.1?

For instance, this:

tmpTime.tm_year = RTC_Time->bYear1 + RTC_Time->bYear;

tmpTime.tm_mon = RTC_Time->bMonth;

tmpTime.tm_mday = RTC_Time->bDay;

would become this:

tmpTime.tm_year = RTC_Time->bYear1 + RTC_Time->bYear;
tmpTime.tm_mon = RTC_Time->bMonth;
tmpTime.tm_mday = RTC_Time->bDay;

I do not intend with regular expression but doing it with the help of the editor.

eeadev
  • 3,662
  • 8
  • 47
  • 100
  • 1
    See if this has something for you: http://userbase.kde.org/KDevelop4/Manual/Customizing_KDevelop – ryyker Aug 19 '13 at 17:14

1 Answers1

1

Regarding my comment above, here is a better picture highlighting why I think the referenced page will help:

enter image description here

ryyker
  • 22,849
  • 3
  • 43
  • 87