Should vars_rename() accept index numbers? · Issue #20 · r-lib/tidyselect

I feel this behavior a bit inconsistent, as select() and rename() shares the same semantics to some extent. vars_select(names(mtcars), new = 1) #> new #> "mpg" vars_rename(names(mtcars), new = 1) #...