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.
Regarding my comment above, here is a better picture highlighting why I think the referenced page will help: