/* Comments for code... */
if (...) {
}
I need to delete the blank line between the comment and the if
:
/* Comments for code... */
if (...) {
}
I am currently using the following regex:
/\*\/\ze\n^$\n[ ]*if
\*//
: end of comment (*/
)^$
: blank line beforeif
[ ]*if
: spaces and anif
As I use \ze
, cursor finally points to */
. How should I do?