?dplyr::mutate

Testing using dev roxygen2@head 7a1dd39
@inheritParams is able to access the .by parameter, but @inheritDotParams is not (see examples below). Note: one workaround could be to specify @inheritDotParams dplyr:::mutate.data.frame but that didn't work either, with error:
✖ In topic 'baz2': @inheritDotParams failed to find topic "dplyr:::mutate.data.frame" in current package.
✖ In topic 'baz2': @inheritDotParams failed.
ℹ No arguments inherited from `dplyr:::mutate.data.frame()`.
The goal of this is to enable RStudio auto-completion of tidylog::mutate to dplyr::mutate.data.frame parameters. See elbersb/tidylog#77 for more information.
Reprex:
#' Foo
#'
#' @inheritParams dplyr::mutate
foo <- function(.data, .by = NULL, ...) { }
?foo
#' Bar
#'
#' @inheritDotParams dplyr::mutate
bar <- function(.data, ...) { }
?bar
#' Baz
#'
#' @inheritParams dplyr::mutate
#' @inheritDotParams dplyr::mutate
baz <- function(.data, ...) { }
?baz

?dplyr::mutateTesting using dev roxygen2@head 7a1dd39
@inheritParamsis able to access the.byparameter, but@inheritDotParamsis not (see examples below). Note: one workaround could be to specify@inheritDotParams dplyr:::mutate.data.framebut that didn't work either, with error:The goal of this is to enable RStudio auto-completion of
tidylog::mutatetodplyr::mutate.data.frameparameters. See elbersb/tidylog#77 for more information.Reprex: