Pattern to search for:
return\s\+(\_[^;]\+)\s*;
Command to unwrap the parentheses from a return (cursor before the parentheses):
nf(di(vhp
Using these, you can turn this:
return (0);
into this:
return 0;
Pattern to search for:
return\s\+(\_[^;]\+)\s*;
Command to unwrap the parentheses from a return (cursor before the parentheses):
nf(di(vhp
Using these, you can turn this:
return (0);
into this:
return 0;