codegrip
codegrip copied to clipboard
Convert `lapply()`/`map()` call to use anonymous function
lapply(x, f, 1, 2, 3)
to lapply(x, \(i) f(i, 1, 2, 3))
With multi-cursor selection on i
so that you can easily rename that argument.